summaryrefslogtreecommitdiff
path: root/app/lib/grappelli/templates/admin/_grappelli/app_index.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2012-09-22 22:37:52 -0400
committerluxagraf <sng@luxagraf.net>2012-09-22 22:37:52 -0400
commit52d5613672758ac6c8ebffc7f33d94d47bde6180 (patch)
tree0b6e1fbc4ed013b2ba701dedeb39be9781ff8204 /app/lib/grappelli/templates/admin/_grappelli/app_index.html
parentefb623af0bcb47d510501c282e1326b11343a29c (diff)
moved outside dependencies to virtualenv and dumped some unused apps out of lib
Diffstat (limited to 'app/lib/grappelli/templates/admin/_grappelli/app_index.html')
-rw-r--r--app/lib/grappelli/templates/admin/_grappelli/app_index.html40
1 files changed, 0 insertions, 40 deletions
diff --git a/app/lib/grappelli/templates/admin/_grappelli/app_index.html b/app/lib/grappelli/templates/admin/_grappelli/app_index.html
deleted file mode 100644
index e9cb806..0000000
--- a/app/lib/grappelli/templates/admin/_grappelli/app_index.html
+++ /dev/null
@@ -1,40 +0,0 @@
-{% extends "admin/_grappelli/index.html" %}
-
-<!-- LOADING -->
-{% load i18n grp_tags %}
-
-<!-- BREADCRUMBS -->
-{% if not is_popup %}
- {% block breadcrumbs %}
- <div id="breadcrumbs">
- <a href="../">{% trans "Home" %}</a> &rsaquo;
- {% for app in app_list %}
- {% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
- {% endfor %}
- </div>
- {% endblock %}
-{% endif %}
-
-<!-- CONTENT -->
-{% block content %}
- <div class="container-grid">
- <div class="column span-12" id="apps_init">
- {% if app_list %}
- {% for app in app_list %}
- <div class="module" id="app_{{ app.name|lower }}">
- <h2>{% trans app.name %}</h2>
- {% for model in app.models %}
- <div class="row">
- {% if model.perms.change %}<a href="{{ model.admin_url }}">{{ model.name }}</a>{% else %}<span>{{ model.name }}</span>{% endif %}
- <ul class="actions">
- <li class="add-link">{% if model.perms.add %}<a href="{{ model.admin_url }}add/">{% trans 'Add' %}</a>{% else %}&nbsp;{% endif %}</li>
- <li class="change-link"> {% if model.perms.change %}<a href="{{ model.admin_url }}">{% trans 'Change' %}</a>{% else %}&nbsp;{% endif %}</li>
- </ul>
- </div>
- {% endfor %}
- </div>
- {% endfor %}
- {% endif %}
- </div>
- </div>
-{% endblock %}