django-admin2/djadmin2/templates/admin2/bootstrap/model_list.html

23 lines
547 B
HTML
Raw Normal View History

2013-05-18 14:53:17 +00:00
{% extends "admin2/bootstrap/base.html" %}
2013-05-18 11:37:46 +00:00
{% block content %}
2013-05-18 15:52:53 +00:00
<h2>{{ model_pluralized|title }}</h2>
{% if has_add_permission %}
2013-05-18 16:04:40 +00:00
<a class="btn" href="./create/">add</a>
{% endif %}
2013-05-18 12:36:14 +00:00
<hr/>
{% for obj in object_list %}
{{ obj }}
<a href="./{{ obj.pk }}/">detail</a>
{% if has_edit_permission %}
<a href="./{{ obj.pk }}/update/">edit</a>
{% endif %}
{% if has_delete_permission %}
<a href="./{{ obj.pk }}/delete/">delete</a>
{% endif %}
<br/>
2013-05-18 12:36:14 +00:00
{% endfor %}
2013-05-18 11:37:46 +00:00
{% endblock content %}