25 lines
697 B
HTML
25 lines
697 B
HTML
{% extends "admin/index.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block bodyclass %}{{ block.super }} app-{{ app_label }}{% endblock %}
|
|
|
|
{% if not is_popup %}
|
|
{% block breadcrumbs %}
|
|
<div class="row mb-2">
|
|
<div class="col-sm-4">
|
|
<h2>{{app_label}}</h2>
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<ol class="breadcrumb float-sm-right">
|
|
<li class="breadcrumb-item"><a href="{% url 'admin:index' %}"><i class="fas fa-tachometer-alt"></i> {% trans 'Home' %}</a></li>
|
|
{% for app in app_list %}
|
|
<li class="breadcrumb-item active">{{ app.name }}</li>
|
|
{% endfor %}
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% endif %}
|
|
|
|
<!-- {% block sidebar %}{% endblock %} -->
|