diff options
| author | Chris McDonough <chrism@plope.com> | 2011-01-06 00:52:45 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-01-06 00:52:45 -0500 |
| commit | be72c66a284aa2584f7a960cdf198cb0ec664477 (patch) | |
| tree | b4b90e2ea8b67d8dae9ce18b21bb15f44b86763f /docs/tutorials/wiki2/authorization.rst | |
| parent | 51b2e8cf88a6451e974103c0c2cb7bba29e58b7f (diff) | |
| parent | be3d6f9b1bc55a5c20b04d36a0724f1ec092d169 (diff) | |
| download | pyramid-be72c66a284aa2584f7a960cdf198cb0ec664477.tar.gz pyramid-be72c66a284aa2584f7a960cdf198cb0ec664477.tar.bz2 pyramid-be72c66a284aa2584f7a960cdf198cb0ec664477.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/tutorials/wiki2/authorization.rst')
| -rw-r--r-- | docs/tutorials/wiki2/authorization.rst | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/docs/tutorials/wiki2/authorization.rst b/docs/tutorials/wiki2/authorization.rst index 8d30ab807..5b07fe788 100644 --- a/docs/tutorials/wiki2/authorization.rst +++ b/docs/tutorials/wiki2/authorization.rst @@ -202,7 +202,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`` @@ -212,11 +211,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> @@ -261,13 +259,11 @@ Our ``views.py`` module will look something like this when we're done: Our ``edit.pt`` template will look something like this when we're done: .. literalinclude:: src/authorization/tutorial/templates/edit.pt - :linenos: :language: xml Our ``view.pt`` template will look something like this when we're done: .. literalinclude:: src/authorization/tutorial/templates/view.pt - :linenos: :language: xml Revisiting the Application |
