Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / django / contrib / admin / templates / admin / app_index.html @ 1a305335

History | View | Annotate | Download (391 Bytes)

1
{% extends "admin/index.html" %}
2
{% load i18n %}
3
{% load url from future %}
4

    
5
{% if not is_popup %}
6
{% block breadcrumbs %}
7
<div class="breadcrumbs">
8
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
9
&rsaquo;
10
{% for app in app_list %}
11
{% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
12
{% endfor %}
13
</div>
14
{% endblock %}
15
{% endif %}
16

    
17
{% block sidebar %}{% endblock %}