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 crispy_forms_tags %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% 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">
|
|
|
|
{% include 'blocks/form.html' with form=form %}
|
|
|
|
<input type="submit" class="btn btn-primary" value="{% trans 'Create' %}" />
|
|
|
|
</form>
|
|
|
|
</div>
|
2018-11-16 08:10:35 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|