2019-02-17 17:16:42 +00:00
|
|
|
{# 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 %}
|
|
|
|
|
2019-02-17 17:16:42 +00:00
|
|
|
{% block bodyclass %}{{ block.super }} app-{{ app_label }}{% endblock %}
|
|
|
|
|
|
|
|
{% if not is_popup %}
|
2019-02-16 19:55:16 +00:00
|
|
|
{% block breadcrumbs %}
|
2019-02-17 17:16:42 +00:00
|
|
|
<ol class="breadcrumb"><li class="home">
|
2019-02-17 17:59:43 +00:00
|
|
|
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
|
2019-02-17 17:16:42 +00:00
|
|
|
</li><li class="active">
|
|
|
|
{% for app in app_list %}
|
|
|
|
{{ app.name }}
|
|
|
|
{% endfor %}
|
|
|
|
</li></ol>
|
2019-02-16 19:55:16 +00:00
|
|
|
{% endblock %}
|
2019-02-17 17:16:42 +00:00
|
|
|
{% endif %}
|
2019-02-16 19:55:16 +00:00
|
|
|
|
2019-02-17 17:16:42 +00:00
|
|
|
{% block sidebar %}{% endblock %}
|