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.
2018-11-16 08:10:35 +00:00
|
|
|
{% extends "administration/base.html" %}
|
|
|
|
|
|
|
|
{% load i18n %}
|
2018-11-26 21:30:14 +00:00
|
|
|
{% load utils %}
|
2018-11-16 08:10:35 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
{% block above_form %}
|
|
|
|
{% endblock %}
|
2018-11-26 21:08:18 +00:00
|
|
|
<div class="">
|
|
|
|
<form action="" method="post" class="form-horizontal">
|
2018-12-10 15:58:35 +00:00
|
|
|
{% include 'partials/form.html' with form=form %}
|
2018-11-26 21:30:14 +00:00
|
|
|
<a class="btn btn-default" href="{% back %}">{% trans "Cancel" %}</a>
|
2019-02-25 15:40:46 +00:00
|
|
|
<input type="submit" class="btn btn-primary" value="{% block action %}{% endblock %}" />
|
2018-11-26 21:08:18 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2018-11-16 08:10:35 +00:00
|
|
|
</div>
|
2018-12-10 15:58:35 +00:00
|
|
|
{% endblock %}
|