summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/authorization.rst
diff options
context:
space:
mode:
authorBlaise Laflamme <blaise@laflamme.org>2011-01-06 00:35:40 -0500
committerBlaise Laflamme <blaise@laflamme.org>2011-01-06 00:35:40 -0500
commitbe3d6f9b1bc55a5c20b04d36a0724f1ec092d169 (patch)
treee7b6e4ccc58f61f267cb770faf61925eec3c48e4 /docs/tutorials/wiki/authorization.rst
parentfda31be8f98ac76c69662b2b1dc9afd9caf7f4c1 (diff)
downloadpyramid-be3d6f9b1bc55a5c20b04d36a0724f1ec092d169.tar.gz
pyramid-be3d6f9b1bc55a5c20b04d36a0724f1ec092d169.tar.bz2
pyramid-be3d6f9b1bc55a5c20b04d36a0724f1ec092d169.zip
Updated wiki tutorial docs
Diffstat (limited to 'docs/tutorials/wiki/authorization.rst')
-rw-r--r--docs/tutorials/wiki/authorization.rst6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/tutorials/wiki/authorization.rst b/docs/tutorials/wiki/authorization.rst
index 1b66ace96..ee86eb543 100644
--- a/docs/tutorials/wiki/authorization.rst
+++ b/docs/tutorials/wiki/authorization.rst
@@ -136,7 +136,6 @@ Add a ``login.pt`` template to your templates directory. It's
referred to within the login view we just added to ``login.py``.
.. literalinclude:: src/authorization/tutorial/templates/login.pt
- :linenos:
:language: xml
Change ``view.pt`` and ``edit.pt``
@@ -146,11 +145,10 @@ We'll also need to change our ``edit.pt`` and ``view.pt`` templates to
display a "Logout" link if someone is logged in. This link will
invoke the logout view.
-To do so we'll add this to both templates within the ``<div
-class="main_content">`` div:
+To do so we'll add this to both templates within the ``<div id="right"
+class="app-welcome align-right">`` div:
.. code-block:: xml
- :linenos:
<span tal:condition="logged_in">
<a href="${request.application_url}/logout">Logout</a>