aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2010-02-20 23:50:41 -0500
committerMike Crute <mcrute@gmail.com>2010-02-20 23:50:41 -0500
commit389779be8effe012c1a7f0ecdc07ef09d6712f8a (patch)
tree1e3ea3d24a5801e4bee62a6ba118943707fa8f22
parent3fdf9ae787dcc7bb46dbaac5250b22f641e41648 (diff)
downloadsnakeplan-389779be8effe012c1a7f0ecdc07ef09d6712f8a.tar.bz2
snakeplan-389779be8effe012c1a7f0ecdc07ef09d6712f8a.tar.xz
snakeplan-389779be8effe012c1a7f0ecdc07ef09d6712f8a.zip
Doing some nicer styling for the create form
-rw-r--r--snakeplan/templates/base.html5
-rw-r--r--snakeplan/templates/projects/project_form.html11
2 files changed, 6 insertions, 10 deletions
diff --git a/snakeplan/templates/base.html b/snakeplan/templates/base.html
index 2858e4c..e6042e6 100644
--- a/snakeplan/templates/base.html
+++ b/snakeplan/templates/base.html
@@ -1,9 +1,8 @@
1<html> 1<html>
2 <head> 2 <head>
3 <title>{% block title %}SnakePlan{% endblock %}</title> 3 <title>{% block title %}SnakePlan{% endblock %}</title>
4 <link rel="stylesheet" href="static/css/blueprint/screen.css" type="text/css" media="screen, projection"> 4 <link rel="stylesheet" href="/static/css/blueprint/screen.css" type="text/css" media="screen, projection">
5 <link rel="stylesheet" href="static/css/blueprint/print.css" type="text/css" media="print"> 5 <link rel="stylesheet" href="/static/css/blueprint/print.css" type="text/css" media="print">
6 <!--[if lt IE 8]><link rel="stylesheet" href="static/css/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
7 </head> 6 </head>
8 <body> 7 <body>
9 {% block content %}{% endblock %} 8 {% block content %}{% endblock %}
diff --git a/snakeplan/templates/projects/project_form.html b/snakeplan/templates/projects/project_form.html
index 9f91f87..1587d17 100644
--- a/snakeplan/templates/projects/project_form.html
+++ b/snakeplan/templates/projects/project_form.html
@@ -1,13 +1,10 @@
1<html> 1{% extends "base.html" %}
2<head> 2
3<title>OH: oh shit, i just added templates to the old directory</title> 3{% block content %}
4</head>
5<body>
6<form action="" method="POST"> 4<form action="" method="POST">
7<ul> 5<ul>
8{{ form.as_ul }} 6{{ form.as_ul }}
9</ul> 7</ul>
10<input type="submit" value="Save"/> 8<input type="submit" value="Save"/>
11</form> 9</form>
12</body> 10{% endblock %}
13</html>