mirror of
https://github.com/Hopiu/django.git
synced 2026-05-02 20:54:44 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@92 bcc190cf-cafb-0310-a4f2-bffc1f526a37
26 lines
635 B
HTML
26 lines
635 B
HTML
{% extends "base_site" %}
|
|
|
|
{% block breadcrumbs %}<div class="breadcrumbs"><a href="/">Home</a> › <a href="/doc/">Documentation</a> › <a href="/doc/views/">Views</a> › {{ name }}</div>{% endblock %}
|
|
|
|
{% block title %}View: {{ name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ name }}</h1>
|
|
|
|
<h2 class="subhead">{{ summary }}</h2>
|
|
|
|
<p>{{ body }}</p>
|
|
|
|
{% if meta.Context %}
|
|
<h3>Context:</h3>
|
|
<p>{{ meta.Context }}</p>
|
|
{% endif %}
|
|
|
|
{% if meta.Templates %}
|
|
<h3>Templates:</h3>
|
|
<p>{{ meta.Templates }}</p>
|
|
{% endif %}
|
|
|
|
<p class="small"><a href="../">‹ Back to Views Documentation</a></p>
|
|
{% endblock %}
|