local changes from server
[redakcja.git] / apps / forms_builder / forms / templates / forms / form_detail.html
1 <!doctype html>
2 {% load forms_builder_tags %}
3 <head>
4     <meta charset="utf-8">
5     <title>{{ form.title }}</title>
6     <style>
7         body {font-family:sans-serif; padding:1em 2em;}
8         p {width:50em; clear:both;}
9         label {display:block; float:left; width:8em; margin:0 1.2em 1.2em 0;}
10         li {list-style-type:none;}
11         li label {width:auto; cursor:pointer;}
12         .errorlist {color:#f00;}
13     </style>
14 </head>
15 <body>
16     {% render_built_form form %}
17 </body>