From dbaf1219d56aa085a6585066b83f2606844c6883 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 21 Aug 2006 18:27:33 +0000 Subject: [PATCH] Fixed #2580 -- Added missing tag in docs/templates.txt examples. Thanks, jonathan-django@jmail.za.net git-svn-id: http://code.djangoproject.com/svn/django/trunk@3635 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/templates.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/templates.txt b/docs/templates.txt index 49d30018fe..c9e76d6c94 100644 --- a/docs/templates.txt +++ b/docs/templates.txt @@ -141,6 +141,7 @@ It's easiest to understand template inheritance by starting with an example:: {% block content %}{% endblock %} + This template, which we'll call ``base.html``, defines a simple HTML skeleton document that you might use for a simple two-column page. It's the job of @@ -196,6 +197,7 @@ like::

This is my second entry.

+ Note that since the child template didn't define the ``sidebar`` block, the value from the parent template is used instead. Content within a ``{% block %}`` @@ -363,7 +365,7 @@ extends Signal that this template extends a parent template. -This tag can be used in two ways: +This tag can be used in two ways: * ``{% extends "base.html" %}`` (with quotes) uses the literal value ``"base.html"`` as the name of the parent template to extend. @@ -961,13 +963,13 @@ any string. pluralize ~~~~~~~~~ -Returns a plural suffix if the value is not 1. By default, this suffix is ``'s'``. +Returns a plural suffix if the value is not 1. By default, this suffix is ``'s'``. Example:: You have {{ num_messages }} message{{ num_messages|pluralize }}. -For words that require a suffix other than ``'s'``, you can provide an alternate +For words that require a suffix other than ``'s'``, you can provide an alternate suffix as a parameter to the filter. Example::