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

@@ -11,7 +11,7 @@
<form action="{% url eve_api.views.eveapi_add %}" method="post">
<formset>
<fieldset>
{% include "formtools/formfield.html" with field=form.api_user_id %}
{% include "formtools/formfield.html" with field=form.api_key class="xxlarge"%}
@@ -19,7 +19,7 @@
{% csrf_token %}
<input type="submit" value="Add API Key" class="btn primary"/>
</formset>
</fieldset>
</form>
{% endblock %}

View File

@@ -10,7 +10,7 @@
<p>Please update your API key as provided on the <a href="http://eve-online.com/api">EVE Online API page</a> and a optional description.</p>
<form action="{% url eveapi-update acc.api_user_id %}" method="post">
<formset>
<fieldset>
{% include "formtools/formfield.html" with field=form.api_user_id %}
{% include "formtools/formfield.html" with field=form.api_key class="xxlarge" %}
@@ -18,7 +18,7 @@
{% csrf_token %}
<input type="submit" value="Add API Key" class="btn primary"/>
</formset>
</fieldset>
</form>
{% endblock %}