covid-formity/templates/changelog_details_modal.html

12 lines
504 B
HTML
Raw Normal View History

2020-03-27 18:04:29 +00:00
{% extends "admin/model/modals/details.html" %}
{% from "_changelog.html" import render_changelog %}
{% block details_table %}
2020-04-08 16:25:55 +00:00
<p>
<a href="{{ url_for('map.index', 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>
2020-04-08 16:25:55 +00:00
</p>
2020-03-27 18:04:29 +00:00
{{ super() }}
{{ render_changelog(model) }}
{% endblock %}