mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-16 21:40:24 +00:00
13 lines
444 B
HTML
13 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 %}
|