[Zope-CMF] Page view without CMF framing

Pawel Lewicki lewicki@provider.pl
Sun, 25 Aug 2002 02:23:25 +0200


Hallo,
To get the simple non-framed page I just added the condition in
main_template:

<body tal:condition="not:python:here.REQUEST.has_key('printable')">
...
<body>

<body tal:condition="python:here.REQUEST.has_key('printable')"">
"""'The last part of the original <body> without framing"""
</body>

Pawel