Final cleanup, formset was actually supposed to be fieldset.

This commit is contained in:
2011-12-04 19:23:25 +00:00
parent 8ad4634fe7
commit e2223f6702
21 changed files with 97 additions and 92 deletions

View File

@@ -12,11 +12,11 @@
password below.</p>
<form action="{% url sso.views.set_apipasswd %}" method="post">
<formset>
<fieldset>
{% include "formtools/formfield.html" with field=form.password %}
{% csrf_token %}
<input type="submit" value="Reset Account" class="btn primary" />
</formset>
</fieldset>
</form>
{% endblock %}

View File

@@ -10,7 +10,7 @@
<p>
<form action="{% url sso.views.user_lookup %}" method="post">
<formset>
<fieldset>
{% csrf_token %}
<div class="clearfix">
{{ form.type.label_tag }}
@@ -25,7 +25,7 @@
</div>
</div>
<input type="submit" value="Lookup" class="btn primary"/>
</formset>
</fieldset>
</form>
</p>
{% endblock %}