mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-13 07:43:09 +00:00
14 lines
444 B
HTML
14 lines
444 B
HTML
|
|
{% extends "admin/index.html" %}
|
||
|
|
{% load i18n %}
|
||
|
|
{% block bodyclass %}{{ block.super }} app-{{ app_label }}{% endblock %}
|
||
|
|
{% if not is_popup %}
|
||
|
|
{% block breadcrumbs %}
|
||
|
|
<div class="breadcrumbs">
|
||
|
|
<a href="{% url 'admin:index' %}">{% translate 'Home' %}</a>
|
||
|
|
›
|
||
|
|
{% for app in app_list %}{{ app.name }}{% endfor %}
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|
||
|
|
{% endif %}
|
||
|
|
{% block sidebar %}{% endblock %}
|