mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-13 12:33:23 +02:00
14 lines
375 B
HTML
14 lines
375 B
HTML
{% load i18n %}
|
|
{% load bootstrap %}
|
|
|
|
{% if form %}
|
|
<form method="post" enctype="multipart/form-data" action="{{ form_url }}" class="add-attachment">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="next" value="{{ next }}"/>
|
|
{{ form|bootstrap }}
|
|
<br>
|
|
<input type="submit" class="btn btn-primary" value="{% trans "Add attachment" %}"/>
|
|
|
|
</form>
|
|
|
|
{% endif %}
|