mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-30 16:09:13 +00:00
19 lines
385 B
HTML
19 lines
385 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' %}">{% trans 'Home' %}</a>
|
||
|
›
|
||
|
{% for app in app_list %}
|
||
|
{{ app.name }}
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% block sidebar %}{% endblock %}
|