From c59a2a69fb38b92b6c45bcf7431d2b1a3c5dce3c Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sat, 23 Oct 2010 19:46:20 -0400 Subject: added grappelli, filebrowser, chunks and tagging to lcal repo --- lib/grappelli/templates/admin_doc/view_index.html | 46 +++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 lib/grappelli/templates/admin_doc/view_index.html (limited to 'lib/grappelli/templates/admin_doc/view_index.html') diff --git a/lib/grappelli/templates/admin_doc/view_index.html b/lib/grappelli/templates/admin_doc/view_index.html new file mode 100644 index 0000000..b3c941c --- /dev/null +++ b/lib/grappelli/templates/admin_doc/view_index.html @@ -0,0 +1,46 @@ +{% extends "admin/base_site.html" %} +{% load adminmedia %} +{% load i18n %} +{% block javascripts %} + {{ block.super }} + +{% endblock %} +{% block bodyclass %}documentation{% endblock %} +{% block content-class %}content-grid{% endblock %} +{% block breadcrumbs %}{% endblock %} +{% block title %}Views{% endblock %} + +{% block content %} +

View documentation

+ {% regroup views|dictsort:"site_id" by site as views_by_site %} +
+
+
+

Jump to site

+ +
+
+
+ {% for site_views in views_by_site %} +
+

Views by URL on {{ site_views.grouper.name }}

+ {% for view in site_views.list|dictsort:"url" %} + {% ifchanged %} +
+

{{ view.url }}

+

View function: {{ view.module }}.{{ view.name }}

+

{{ view.title }}

+
+ {% endifchanged %} + {% endfor %} +
+ {% endfor %} +
+
+{% endblock %} + + -- cgit v1.2.3