equal
deleted
inserted
replaced
|
1 {% extends "admin/base_site.html" %} |
|
2 {% load i18n %} |
|
3 {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> › <a href="../../">Documentation</a> › <a href="../">Views</a> › {{ name }}</div>{% endblock %} |
|
4 {% block title %}View: {{ name }}{% endblock %} |
|
5 |
|
6 {% block content %} |
|
7 |
|
8 <h1>{{ name }}</h1> |
|
9 |
|
10 <h2 class="subhead">{{ summary }}</h2> |
|
11 |
|
12 <p>{{ body }}</p> |
|
13 |
|
14 {% if meta.Context %} |
|
15 <h3>Context:</h3> |
|
16 <p>{{ meta.Context }}</p> |
|
17 {% endif %} |
|
18 |
|
19 {% if meta.Templates %} |
|
20 <h3>Templates:</h3> |
|
21 <p>{{ meta.Templates }}</p> |
|
22 {% endif %} |
|
23 |
|
24 <p class="small"><a href="../">‹ Back to Views Documentation</a></p> |
|
25 {% endblock %} |