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

22 lines
492 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 %}
{% if has_add_permission %}
<a 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 %}