evorepo/templates/general_form.html

24 lines
771 B
HTML
Raw Normal View History

2008-06-27 15:34:47 -07:00
{% extends "base.html" %}
{% block title %}Arch Linux - {{title}}{% endblock %}
2008-06-27 15:34:47 -07:00
{% block content %}
<div id="generic-form" class="box">
<h2>{{title}}</h2>
{% if description %}{{description}}{% endif %}
<form class="general-form" method="post">{% csrf_token %}
<fieldset>
2008-06-27 15:34:47 -07:00
{% for field in form %}
<p><label>{{field.label}}{% if field.help_text %}:</label><br />
<span class="form-help">{{field.help_text}}</span> {% else %}:</label> {% endif %}
{{field}} {% if field.required %}<span class="form-req-field">*</span>{% endif%}</p>
2008-06-27 15:34:47 -07:00
{% endfor %}
</fieldset>
<p><label></label> <input type="submit" value="{{submit_text}}" /></p>
</form>
</div>
2008-06-27 15:34:47 -07:00
{% endblock %}