mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-24 20:33:11 +00:00
19 lines
484 B
HTML
19 lines
484 B
HTML
{# 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 'index' %}">{% trans 'Home' %}</a>
|
|
</li><li class="active">
|
|
{% for app in app_list %}
|
|
{{ app.name }}
|
|
{% endfor %}
|
|
</li></ol>
|
|
{% endblock %}
|
|
{% endif %}
|
|
|
|
{% block sidebar %}{% endblock %}
|