Private
Public Access
1
0

bug fixes and initial improvements

This commit is contained in:
Sander Roosendaal
2018-10-17 07:44:20 +02:00
parent 54baa12210
commit 2fc13dc71a
12 changed files with 90 additions and 85 deletions

View File

@@ -81,6 +81,23 @@
</div>
<ul class="main-content">
<li>
<form enctype="multipart/form-data" action="{{ formloc }}" method="post">
<table>
{{ optionsform.as_table }}
</table>
<input type="hidden" name="options" value="options">
</li>
<li>
<table>
{{ form.as_table }}
</table>
</li>
<li>
{% csrf_token %}
<input class="button green small" value="Submit" type="Submit">
</form>
</li>
<li class="grid_4">
<p>Summary for {{ theuser.first_name }} {{ theuser.last_name }}
@@ -162,23 +179,6 @@
{% endif %}
</li>
<li>
<form enctype="multipart/form-data" action="{{ formloc }}" method="post">
<table>
{{ optionsform.as_table }}
</table>
<input type="hidden" name="options" value="options">
</li>
<li>
<table>
{{ form.as_table }}
</table>
</li>
<li>
{% csrf_token %}
<input class="button green small" value="Submit" type="Submit">
</form>
</li>
</ul>
{% endblock %}