diff --git a/templates/general_form.html b/templates/general_form.html index 776f3672..d499919a 100644 --- a/templates/general_form.html +++ b/templates/general_form.html @@ -1,25 +1,23 @@ {% extends "base.html" %} +{% block title %}Arch Linux - {{title}}{% endblock %} {% block content %} -
-

{{title}}

- {% if description %}{{description}}{% endif %} -
- +
+ +

{{title}}

+ + {% if description %}{{description}}{% endif %} + + +
{% for field in form %} -
- - - +


+ {{field.help_text}} {% else %}: {% endif %} + {{field}} {% if field.required %}*{% endif%}

{% endfor %} - - - -
- {{field.label}}: -
{{field.help_text}}
{{field}}
- -
-
-
+ +

+ + + {% endblock %}