mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-26 13:23:59 +00:00
55 lines
2.3 KiB
HTML
55 lines
2.3 KiB
HTML
|
|
{% load i18n %}
|
|||
|
|
{% if app_list %}
|
|||
|
|
{% for app in app_list %}
|
|||
|
|
<div class="app-{{ app.app_label }} module{% if app.app_url in request.path|urlencode %}current-app{% endif %}">
|
|||
|
|
<table>
|
|||
|
|
<caption>
|
|||
|
|
<a href="{{ app.app_url }}"
|
|||
|
|
class="section"
|
|||
|
|
title="{% blocktranslate with name=app.name %}Models in the {{ name }} application{% endblocktranslate %}">
|
|||
|
|
{{ app.name }}
|
|||
|
|
</a>
|
|||
|
|
</caption>
|
|||
|
|
{% for model in app.models %}
|
|||
|
|
<tr class="model-{{ model.object_name|lower }}{% if model.admin_url in request.path|urlencode %}current-model{% endif %}">
|
|||
|
|
{% if model.admin_url %}
|
|||
|
|
<th scope="row">
|
|||
|
|
<a href="{{ model.admin_url }}"
|
|||
|
|
{% if model.admin_url in request.path|urlencode %}aria-current="page"{% endif %}>
|
|||
|
|
{{ model.name }}
|
|||
|
|
</a>
|
|||
|
|
</th>
|
|||
|
|
{% else %}
|
|||
|
|
<th scope="row">{{ model.name }}</th>
|
|||
|
|
{% endif %}
|
|||
|
|
{% if model.add_url %}
|
|||
|
|
<td>
|
|||
|
|
<a href="{{ model.add_url }}" class="addlink">{% translate 'Add' %}</a>
|
|||
|
|
</td>
|
|||
|
|
{% else %}
|
|||
|
|
<td></td>
|
|||
|
|
{% endif %}
|
|||
|
|
{% if model.admin_url and show_changelinks %}
|
|||
|
|
{% if model.view_only %}
|
|||
|
|
<td>
|
|||
|
|
<a href="{{ model.admin_url }}" class="viewlink">{% translate 'View' %}</a>
|
|||
|
|
</td>
|
|||
|
|
{% else %}
|
|||
|
|
<td>
|
|||
|
|
<a href="{{ model.admin_url }}" class="changelink">{% translate 'Change' %}</a>
|
|||
|
|
</td>
|
|||
|
|
{% endif %}
|
|||
|
|
{% elif show_changelinks %}
|
|||
|
|
<td></td>
|
|||
|
|
{% endif %}
|
|||
|
|
</tr>
|
|||
|
|
{% endfor %}
|
|||
|
|
</table>
|
|||
|
|
</div>
|
|||
|
|
{% endfor %}
|
|||
|
|
{% else %}
|
|||
|
|
<p>
|
|||
|
|
{% translate 'You don’t have permission to view or edit anything.' %}
|
|||
|
|
</p>
|
|||
|
|
{% endif %}
|