django-admin2/djadmin2/templates/admin2/bootstrap/model_edit_form.html
Chris Lawlor f9a1540e09 Add 'title' and 'page_title' template blocks.
Makes template page title styling consistent across all templates.
2013-05-20 16:17:44 -04:00

19 lines
394 B
HTML

{% extends "admin2/bootstrap/base.html" %}
{% block title %}Change {{ model }}{% endblock %}
{% block page_title %}Change {{ model }}{% endblock %}
{% block content %}
<div class="row">
<div class="span12">
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit"/>
</form>
</div>
</div>
{% endblock content %}