blob: d5d8a9319570a6013a3b22e52136b01633d5045e (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends "ishtar/forms/base_form.html" %}
{% load i18n %}
{% block extra_validation_button %}
<div class="col-sm">
<a href="{% url 'display-item' 'file' file.pk %}" class="btn btn-secondary" role="button" aria-pressed="true">
{% trans "Back to the file" %}
</a>
</div>
{% endblock %}
|