blob: 900d3ed72026db7b1e1160688d6fdba4d0822c93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{% extends "admin/base_site.html" %}
{% load adminmedia %}
{% load i18n %}
{% block bodyclass %}documentation{% endblock %}
{% block content-class %}content-grid{% endblock %}
{% block breadcrumbs %}<div id="breadcrumbs"><a href="../../../">Home</a> › <a href="../../">Documentation</a> › <a href="../">Views</a> › {{ name }}</div>{% endblock %}
{% block title %}View: {{ name }}{% endblock %}
{% block content %}
<h1>{{ name }}</h1>
<div class="container-grid rte">
<div class="module">
<h2>{{ summary }}</h2>
<p>{{ body }}</p>
{% if meta.Context %}
<div class="module">
<h3>Context:</h3>
<p>{{ meta.Context }}</p>
</div>
{% endif %}
{% if meta.Templates %}
<div class="module">
<h3>Templates:</h3>
<p>{{ meta.Templates }}</p>
</div>
{% endif %}
</div>
<a href="../" class="back">‹ Back to Views Documentation</a>
</div>
{% endblock %}
|