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

« back to all changes in this revision

Viewing changes to docs/intro/tutorial02.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (1.1.12 upstream) (29.1.1 maverick-security)
  • Revision ID: james.westby@ubuntu.com-20101012113435-yy57c8tx6g9anf3e
Tags: 1.2.3-1ubuntu0.1
* SECURITY UPDATE: XSS in CSRF protections. New upstream release
  - CVE-2010-3082
* debian/patches/01_disable_url_verify_regression_tests.diff:
  - updated to disable another test that fails without internet connection
  - patch based on work by Kai Kasurinen and Krzysztof Klimonda
* debian/control: don't Build-Depends on locales-all, which doesn't exist
  in maverick

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.. _intro-tutorial02:
2
 
 
3
1
=====================================
4
2
Writing your first Django app, part 2
5
3
=====================================
6
4
 
7
 
This tutorial begins where :ref:`Tutorial 1 <intro-tutorial01>` left off. We're
 
5
This tutorial begins where :doc:`Tutorial 1 </intro/tutorial01>` left off. We're
8
6
continuing the Web-poll application and will focus on Django's
9
7
automatically-generated admin site.
10
8
 
426
424
site's name as you see fit.
427
425
 
428
426
This template file contains lots of text like ``{% block branding %}``
429
 
and ``{{ title }}. The ``{%`` and ``{{`` tags are part of Django's
 
427
and ``{{ title }}``. The ``{%`` and ``{{`` tags are part of Django's
430
428
template language. When Django renders ``admin/base_site.html``, this
431
429
template language will be evaluated to produce the final HTML page.
432
430
Don't worry if you can't make any sense of the template right now --
463
461
don't worry if you can't understand the template language -- we'll cover that
464
462
in more detail in Tutorial 3.
465
463
 
466
 
When you're comfortable with the admin site, read :ref:`part 3 of this tutorial
467
 
<intro-tutorial03>` to start working on public poll views.
 
464
When you're comfortable with the admin site, read :doc:`part 3 of this tutorial
 
465
</intro/tutorial03>` to start working on public poll views.