2013-05-18 14:53:17 +00:00
|
|
|
{% extends "admin2/bootstrap/base.html" %}
|
2013-05-18 11:37:46 +00:00
|
|
|
|
2013-05-21 22:45:08 +00:00
|
|
|
{% block title %}{{ action }} {{ model }}{% endblock %}
|
2013-05-18 11:37:46 +00:00
|
|
|
|
2013-05-21 22:45:08 +00:00
|
|
|
{% block page_title %}{{ action }} {{ model }}{% endblock %}
|
2013-05-19 15:13:20 +00:00
|
|
|
|
2013-05-20 18:38:36 +00:00
|
|
|
{% block content %}
|
2013-05-19 15:13:20 +00:00
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="span12">
|
|
|
|
|
<form method="post">
|
|
|
|
|
{% csrf_token %}
|
|
|
|
|
{{ form.as_p }}
|
2013-05-21 21:50:50 +00:00
|
|
|
|
|
|
|
|
<button class="btn btn-small" type="submit" name="_addanother">Save and add another</button>
|
|
|
|
|
<button class="btn btn-small" type="submit" name="_continue">Save and continue editing</button>
|
|
|
|
|
<button class="btn btn-small btn-success" type="submit" name="_save">Save</button>
|
2013-05-19 15:13:20 +00:00
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2013-05-18 11:37:46 +00:00
|
|
|
|
|
|
|
|
{% endblock content %}
|