2013-05-18 11:57:22 +00:00
|
|
|
{% extends "admin2/bootstrap/base.html" %}
|
2013-05-25 17:44:48 +00:00
|
|
|
{% load admin2_tags i18n %}
|
2013-05-18 10:49:08 +00:00
|
|
|
|
|
|
|
|
{% block content %}
|
2013-05-19 11:03:25 +00:00
|
|
|
|
2013-05-19 11:29:28 +00:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="span7">
|
2013-05-26 00:55:43 +00:00
|
|
|
{% for app_label, registry in apps.items %}
|
|
|
|
|
{% include 'admin2/bootstrap/includes/app_model_list.html' %}
|
2013-05-19 11:03:25 +00:00
|
|
|
{% endfor %}
|
2013-05-19 11:29:28 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="span5">
|
2013-05-25 17:44:48 +00:00
|
|
|
<h4>{% trans "Recent Actions" %}</h4>
|
|
|
|
|
<h5>{% trans "My Actions" %}</h5>
|
2013-05-19 11:29:28 +00:00
|
|
|
TODO
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2013-05-18 10:49:08 +00:00
|
|
|
{% endblock content %}
|