covid-formity/templates/changelog_details_modal.html

12 lines
509 B
HTML

{% extends "admin/model/modals/details.html" %}
{% from "_changelog.html" import render_changelog %}
{% block details_table %}
<p>
<a href="{{ url_for('map.index_view', id=model.id) }}" title="Show on map"><span class="fa fa-pencil glyphicon glyphicon-map-marker"></span> Show on map</a>
<a href="{{ url_for('faceshieldrequest.label', id=model.id) }}" title="Print label"><span class="glyphicon glyphicon-print"></span> Print label</a>
</p>
{{ super() }}
{{ render_changelog(model) }}
{% endblock %}