mirror of https://github.com/interlegis/sigi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
499 B
17 lines
499 B
<!doctype html>
|
|
{% load forms_builder_tags %}
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ form.title }}</title>
|
|
<style>
|
|
body {font-family:sans-serif; padding:1em 2em;}
|
|
p {width:50em; clear:both;}
|
|
label {display:block; float:left; width:8em; margin:0 1.2em 1.2em 0;}
|
|
li {list-style-type:none;}
|
|
li label {width:auto; cursor:pointer;}
|
|
.errorlist {color:#f00;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% render_built_form form %}
|
|
</body>
|
|
|