PageRenderTime 70ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/django/contrib/admindocs/templates/admin_doc/template_detail.html

https://code.google.com/p/mango-py/
HTML | 21 lines | 17 code | 4 blank | 0 comment | 0 complexity | 504342530b9cf7132538918061232189 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. {% extends "admin/base_site.html" %}
  2. {% load i18n %}
  3. {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> &rsaquo; <a href="../../">Documentation</a> &rsaquo; Templates &rsaquo; {{ name }}</div>{% endblock %}
  4. {% block title %}Template: {{ name }}{% endblock %}
  5. {% block content %}
  6. <h1>Template: "{{ name }}"</h1>
  7. {% regroup templates|dictsort:"site_id" by site as templates_by_site %}
  8. {% for group in templates_by_site %}
  9. <h2>Search path for template "{{ name }}" on {{ group.grouper }}:</h2>
  10. <ol>
  11. {% for template in group.list|dictsort:"order" %}
  12. <li><code>{{ template.file }}</code>{% if not template.exists %} <em>(does not exist)</em>{% endif %}</li>
  13. {% endfor %}
  14. </ol>
  15. {% endfor %}
  16. <p class="small"><a href="../../">&lsaquo; Back to Documentation</a></p>
  17. {% endblock %}