~ubuntu-branches/ubuntu/quantal/python-django/quantal

« back to all changes in this revision

Viewing changes to django/contrib/admin/templates/admin_doc/view_detail.html

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant, Eddy Mulyono
  • Date: 2008-09-16 12:18:47 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080916121847-mg225rg5mnsdqzr0
Tags: 1.0-1ubuntu1
* Merge from Debian (LP: #264191), remaining changes:
  - Run test suite on build.

[Eddy Mulyono]
* Update patch to workaround network test case failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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; <a href="../">Views</a> &rsaquo; {{ name }}</div>{% endblock %}
4
 
{% block userlinks %}<a href="../../../password_change/">{% trans 'Change password' %}</a> / <a href="../../../logout/">{% trans 'Log out' %}</a>{% endblock %}
5
 
{% block title %}View: {{ name }}{% endblock %}
6
 
 
7
 
{% block content %}
8
 
 
9
 
<h1>{{ name }}</h1>
10
 
 
11
 
<h2 class="subhead">{{ summary }}</h2>
12
 
 
13
 
<p>{{ body }}</p>
14
 
 
15
 
{% if meta.Context %}
16
 
<h3>Context:</h3>
17
 
<p>{{ meta.Context }}</p>
18
 
{% endif %}
19
 
 
20
 
{% if meta.Templates %}
21
 
<h3>Templates:</h3>
22
 
<p>{{ meta.Templates }}</p>
23
 
{% endif %}
24
 
 
25
 
<p class="small"><a href="../">&lsaquo; Back to Views Documentation</a></p>
26
 
{% endblock %}