mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-17 14:40:27 +00:00
18 lines
425 B
HTML
18 lines
425 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 %}
|