mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-23 20:53:09 +00:00
18 lines
385 B
HTML
18 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 %}
|