django-admin2/djadmin2/templates/admin2/bootstrap/index.html
Andrew Ingram 9f41c3f56e Initial stab at breadcrumbs
There's currently a lot of copy-pasting of breadcrumbs, this can be revisited once we have a better understanding of how we're going to handle navigation.

I've also tried to make template context variables more logical and consistent throughout.
2013-05-26 01:55:43 +01:00

18 lines
459 B
HTML

{% extends "admin2/bootstrap/base.html" %}
{% load admin2_tags i18n %}
{% block content %}
<div class="row">
<div class="span7">
{% for app_label, registry in apps.items %}
{% include 'admin2/bootstrap/includes/app_model_list.html' %}
{% endfor %}
</div>
<div class="span5">
<h4>{% trans "Recent Actions" %}</h4>
<h5>{% trans "My Actions" %}</h5>
TODO
</div>
</div>
{% endblock content %}