1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<metal:body
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
define-macro="body">
<p>
Sorry, you don't have permission to access this page.
</p>
<div tal:condition="request/lp:person">
<p>
You are logged in as <span tal:content="request/lp:person/title" />.
</p>
</div>
<p tal:condition="not: request/lp:person">
You are not logged in.
</p>
<tal:replace tal:replace="structure view/maybeShowTraceback" />
</metal:body>
|