This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-02-17 19:29:41 +00:00
|
|
|
{% extends base_template|default:"generic/form.html" %}
|
2018-11-16 08:10:35 +00:00
|
|
|
|
2020-05-15 08:54:31 +00:00
|
|
|
{% load passbook_utils %}
|
2018-11-16 08:10:35 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block above_form %}
|
2020-05-20 11:47:58 +00:00
|
|
|
<h1>
|
|
|
|
{% blocktrans with type=form|form_verbose_name|title inst=form.instance %}
|
2020-06-05 18:18:11 +00:00
|
|
|
Update {{ inst }}
|
2020-05-20 11:47:58 +00:00
|
|
|
{% endblocktrans %}
|
|
|
|
</h1>
|
2019-02-25 15:40:46 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block action %}
|
2020-07-06 15:46:30 +00:00
|
|
|
{% blocktrans with type=form|form_verbose_name %}
|
2020-05-20 11:47:58 +00:00
|
|
|
Update {{ type }}
|
|
|
|
{% endblocktrans %}
|
2019-02-25 15:40:46 +00:00
|
|
|
{% endblock %}
|