31 lines
614 B
HTML
31 lines
614 B
HTML
{% extends "artsurvey/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block header %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
|
|
<h4>{% trans 'Attach file to' %}: <a href="{{ source.get_absolute_url }}">{{ source }}</a></h4>
|
|
|
|
<form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
|
|
<div class="form-group">
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<h5>
|
|
<table>
|
|
{{ form }}
|
|
</table>
|
|
</h5>
|
|
<input type="submit" class="btn btn-primary" value="{% trans 'Upload' %}" />
|
|
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|