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-10-18 13:19:01 +00:00
|
|
|
{% extends container_template|default:"administration/base.html" %}
|
2018-11-16 08:10:35 +00:00
|
|
|
|
|
|
|
{% load i18n %}
|
2020-05-15 08:54:31 +00:00
|
|
|
{% load passbook_utils %}
|
2019-03-10 17:06:06 +00:00
|
|
|
{% load static %}
|
2018-11-16 08:10:35 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2020-02-21 14:00:45 +00:00
|
|
|
<section class="pf-c-page__main-section pf-m-light">
|
|
|
|
<div class="pf-c-content">
|
|
|
|
{% block above_form %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section class="pf-c-page__main-section">
|
|
|
|
<div class="pf-l-stack">
|
|
|
|
<div class="pf-l-stack__item">
|
|
|
|
<div class="pf-c-card">
|
|
|
|
<div class="pf-c-card__body">
|
2020-11-21 10:28:00 +00:00
|
|
|
<form id="main-form" action="" method="post" class="pf-c-form pf-m-horizontal" enctype="multipart/form-data">
|
2020-02-21 14:00:45 +00:00
|
|
|
{% include 'partials/form_horizontal.html' with form=form %}
|
|
|
|
{% block beneath_form %}
|
|
|
|
{% endblock %}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2020-11-21 10:28:00 +00:00
|
|
|
<footer class="pf-c-modal-box__footer">
|
|
|
|
<input class="pf-c-button pf-m-primary" type="submit" form="main-form" value="{% block action %}{% endblock %}" />
|
|
|
|
<a class="pf-c-button pf-m-secondary" href="{% back %}">{% trans "Cancel" %}</a>
|
|
|
|
</footer>
|
2018-12-10 15:58:35 +00:00
|
|
|
{% endblock %}
|
2019-03-08 14:11:01 +00:00
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
{{ block.super }}
|
|
|
|
{{ form.media.js }}
|
|
|
|
{% endblock %}
|