diff options
| author | Blaise Laflamme <blaise@laflamme.org> | 2011-01-06 00:35:07 -0500 |
|---|---|---|
| committer | Blaise Laflamme <blaise@laflamme.org> | 2011-01-06 00:35:07 -0500 |
| commit | fda31be8f98ac76c69662b2b1dc9afd9caf7f4c1 (patch) | |
| tree | e001dadfbd43ee4701aa7f2f89ba623f72be8e1c /docs/tutorials | |
| parent | 30c242755e6ec6f21b9f817de606bdad6aed276f (diff) | |
| download | pyramid-fda31be8f98ac76c69662b2b1dc9afd9caf7f4c1.tar.gz pyramid-fda31be8f98ac76c69662b2b1dc9afd9caf7f4c1.tar.bz2 pyramid-fda31be8f98ac76c69662b2b1dc9afd9caf7f4c1.zip | |
Removed login option from tutorial defining views templates
Diffstat (limited to 'docs/tutorials')
4 files changed, 4 insertions, 20 deletions
diff --git a/docs/tutorials/wiki/src/views/tutorial/templates/edit.pt b/docs/tutorials/wiki/src/views/tutorial/templates/edit.pt index 1c764f924..8ed9f8b63 100644 --- a/docs/tutorials/wiki/src/views/tutorial/templates/edit.pt +++ b/docs/tutorials/wiki/src/views/tutorial/templates/edit.pt @@ -28,11 +28,7 @@ Editing <b><span tal:replace="page.__name__">Page Name Goes Here</span></b><br/> You can return to the <a href="${request.application_url}">FrontPage</a>.<br/> </div> - <div id="right" class="app-welcome align-right"> - <span tal:condition="logged_in"> - <a href="${request.application_url}/logout">Logout</a> - </span> - </div> + <div id="right" class="app-welcome align-right"></div> </div> </div> <div id="bottom"> diff --git a/docs/tutorials/wiki/src/views/tutorial/templates/view.pt b/docs/tutorials/wiki/src/views/tutorial/templates/view.pt index 003349ea5..f104e481c 100644 --- a/docs/tutorials/wiki/src/views/tutorial/templates/view.pt +++ b/docs/tutorials/wiki/src/views/tutorial/templates/view.pt @@ -28,11 +28,7 @@ Viewing <b><span tal:replace="page.__name__">Page Name Goes Here</span></b><br/> You can return to the <a href="${request.application_url}">FrontPage</a>.<br/> </div> - <div id="right" class="app-welcome align-right"> - <span tal:condition="logged_in"> - <a href="${request.application_url}/logout">Logout</a> - </span> - </div> + <div id="right" class="app-welcome align-right"></div> </div> </div> <div id="bottom"> diff --git a/docs/tutorials/wiki2/src/views/tutorial/templates/edit.pt b/docs/tutorials/wiki2/src/views/tutorial/templates/edit.pt index 31d5f4716..ae4c0c64d 100644 --- a/docs/tutorials/wiki2/src/views/tutorial/templates/edit.pt +++ b/docs/tutorials/wiki2/src/views/tutorial/templates/edit.pt @@ -28,11 +28,7 @@ Editing <b><span tal:replace="page.name">Page Name Goes Here</span></b><br/> You can return to the <a href="${request.application_url}">FrontPage</a>.<br/> </div> - <div id="right" class="app-welcome align-right"> - <span tal:condition="logged_in"> - <a href="${request.application_url}/logout">Logout</a> - </span> - </div> + <div id="right" class="app-welcome align-right"></div> </div> </div> <div id="bottom"> diff --git a/docs/tutorials/wiki2/src/views/tutorial/templates/view.pt b/docs/tutorials/wiki2/src/views/tutorial/templates/view.pt index 529db4dcc..6761c8cf6 100644 --- a/docs/tutorials/wiki2/src/views/tutorial/templates/view.pt +++ b/docs/tutorials/wiki2/src/views/tutorial/templates/view.pt @@ -28,11 +28,7 @@ Viewing <b><span tal:replace="page.name">Page Name Goes Here</span></b><br/> You can return to the <a href="${request.application_url}">FrontPage</a>.<br/> </div> - <div id="right" class="app-welcome align-right"> - <span tal:condition="logged_in"> - <a href="${request.application_url}/logout">Logout</a> - </span> - </div> + <div id="right" class="app-welcome align-right"></div> </div> </div> <div id="bottom"> |
