8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-25 12:53:11 +00:00
re2o/useradmin/templates/admin/app_index.html

20 lines
490 B
HTML
Raw Normal View History

{# Please keep this template in sync with django/contrib/admin one #}
{% extends "admin/index.html" %}
2019-02-16 19:55:16 +00:00
{% load i18n %}
{% block bodyclass %}{{ block.super }} app-{{ app_label }}{% endblock %}
{% if not is_popup %}
2019-02-16 19:55:16 +00:00
{% block breadcrumbs %}
<ol class="breadcrumb"><li class="home">
2019-02-17 17:59:43 +00:00
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
</li><li class="active">
{% for app in app_list %}
{{ app.name }}
{% endfor %}
</li></ol>
2019-02-16 19:55:16 +00:00
{% endblock %}
{% endif %}
2019-02-16 19:55:16 +00:00
{% block sidebar %}{% endblock %}