mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-04-04 07:10:30 +00:00
16 lines
247 B
HTML
16 lines
247 B
HTML
{% extends "admin2/bootstrap/base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
|
|
{% for formset in inlines %}
|
|
{{ formset }}
|
|
{% endfor %}
|
|
|
|
<input type="submit"/>
|
|
</form>
|
|
|
|
{% endblock content %}
|