mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-04-03 23:00:34 +00:00
22 lines
547 B
HTML
22 lines
547 B
HTML
{% extends "admin2/bootstrap/base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>{{ model_pluralized|title }}</h2>
|
|
{% if has_add_permission %}
|
|
<a class="btn" href="./create/">add</a>
|
|
{% endif %}
|
|
<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/>
|
|
{% endfor %}
|
|
|
|
|
|
{% endblock content %}
|