2006-05-02 09:31:56 +08:00
|
|
|
{% extends "admin/base_site.html" %}
|
2005-12-01 14:52:16 +08:00
|
|
|
{% load i18n %}
|
2005-07-29 23:25:31 +08:00
|
|
|
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> › <a href="../../">Documentation</a> › <a href="../">Views</a> › {{ name }}</div>{% endblock %}
|
2005-12-01 14:52:16 +08:00
|
|
|
{% block userlinks %}<a href="../../../password_change/">{% trans 'Change password' %}</a> / <a href="../../../logout/">{% trans 'Log out' %}</a>{% endblock %}
|
2005-07-29 23:25:31 +08:00
|
|
|
{% block title %}View: {{ name }}{% endblock %}
|
2005-07-16 11:46:17 +08:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h1>{{ name }}</h1>
|
|
|
|
|
2006-09-26 19:58:56 +08:00
|
|
|
<h2 class="subhead">{{ summary }}</h2>
|
2005-07-16 11:46:17 +08:00
|
|
|
|
|
|
|
<p>{{ body }}</p>
|
2005-07-29 23:25:31 +08:00
|
|
|
|
2005-07-16 11:46:17 +08:00
|
|
|
{% if meta.Context %}
|
2005-07-29 23:25:31 +08:00
|
|
|
<h3>Context:</h3>
|
|
|
|
<p>{{ meta.Context }}</p>
|
2005-07-16 11:46:17 +08:00
|
|
|
{% endif %}
|
2005-07-29 23:25:31 +08:00
|
|
|
|
2005-07-16 11:46:17 +08:00
|
|
|
{% if meta.Templates %}
|
|
|
|
<h3>Templates:</h3>
|
2005-07-29 23:25:31 +08:00
|
|
|
<p>{{ meta.Templates }}</p>
|
2005-07-16 11:46:17 +08:00
|
|
|
{% endif %}
|
2005-07-29 23:25:31 +08:00
|
|
|
|
2005-07-16 11:46:17 +08:00
|
|
|
<p class="small"><a href="../">‹ Back to Views Documentation</a></p>
|
|
|
|
{% endblock %}
|