b3ac11a66b
Remove my hack to get bootstrap forms. Remove the insane render-row-at-a-time forms that then only render default django forms.
15 lines
550 B
HTML
15 lines
550 B
HTML
{% extends "symposion/proposals/base.html" %}
|
|
|
|
{% block page_title %}Upload Document to '{{ proposal.title }}'{% endblock %}
|
|
|
|
{% block proposals_body %}
|
|
<form class="form-horizontal" method="POST" action="" enctype="multipart/form-data" class="form form-horizontal">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
{% include "_form_snippet.html" with form=form %}
|
|
<div class="btn-group">
|
|
<input class="btn btn-primary" type="submit" value="Upload" />
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|