17 lines
429 B
HTML
17 lines
429 B
HTML
{% extends "administration/base.html" %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
{% block above_form %}
|
|
{% endblock %}
|
|
<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>
|
|
</div>
|
|
{% endblock %} |