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

12 lines
304 B
HTML
Raw Normal View History

2013-05-18 11:37:46 +00:00
{% extends "admin/base.html" %}
{% block content %}
<a href="./create/">add</a>
2013-05-18 12:36:14 +00:00
<hr/>
{% for obj in object_list %}
{{ obj }} <a href="./{{ obj.pk }}/">detail</a> <a href="./{{ obj.pk }}/update/">edit</a> <a href="./{{ obj.pk }}/delete/">delete</a><br/>
2013-05-18 12:36:14 +00:00
{% endfor %}
2013-05-18 11:37:46 +00:00
{% endblock content %}