local changes from server
[redakcja.git] / apps / forms_builder / example_project / templates / index.html
1 <!doctype html>
2 <head>
3     <meta charset="utf-8">
4     <title>{{ form.title }}</title>
5     <style>
6         body {font-family:sans-serif; padding:1em 2em;}
7         p {width:50em;}
8         label {display:block; float:left; width:10em;}
9         .errorlist {color:#f00;}
10     </style>
11 </head>
12 <body>
13     <h1>Forms</h1>
14     {% for form in forms %}
15     <p><a href="{{ form.get_absolute_url }}">{{ form.title }}</a></p>
16     {% empty %}
17     <p>No forms created. Go to the <a href="/admin/">admin</a> to create a form.</p>
18     {% endfor %}
19 </body>
20 </html>
21