include documents
This commit is contained in:
parent
8457c8d5ac
commit
0ea559bae1
1 changed files with 20 additions and 0 deletions
|
@ -34,4 +34,24 @@
|
|||
<dt>{% trans "Audience Level" %}</dt>
|
||||
<dd>{{ proposal.get_audience_level_display }} </dd>
|
||||
|
||||
<dt>{% trans "Documents" %}</dt>
|
||||
<dd>
|
||||
{% if proposal.supporting_documents.exists %}
|
||||
<table class="table table-striped">
|
||||
{% for document in proposal.supporting_documents.all %}
|
||||
<tr>
|
||||
<td><a href="{{ document.download_url }}">{{ document.description }}</a></td>
|
||||
<td>
|
||||
<form style="margin: 0;" method="post" action="{% url proposal_document_delete document.pk %}">
|
||||
{% csrf_token %}
|
||||
<button type="submit" class="btn btn-mini">delete</button>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% else %}
|
||||
No supporting documents attached to this proposal.
|
||||
{% endif %}
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
Loading…
Reference in a new issue