django-admin2/djadmin2/templates/admin2/bootstrap/model_list.html
Andrew Ingram 88418efc7b Added django admin style registration (for now)
Big changes to how things are structured, ModelAdmin2 handles its views and urls
2013-05-18 15:43:44 +02:00

11 lines
304 B
HTML

{% extends "admin/base.html" %}
{% block content %}
<a href="./create/">add</a>
<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/>
{% endfor %}
{% endblock content %}