You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
490 B

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