[2043] | 1 | <metal:block define-macro="master" |
---|
| 2 | tal:define="showthirdcol showthirdcol|python:1; |
---|
| 3 | emptybody emptybody|request/emptybody|nothing; |
---|
| 4 | mtool here/portal_membership; |
---|
| 5 | |
---|
| 6 | utool nocall:here/portal_url; |
---|
| 7 | atool here/portal_actions; |
---|
| 8 | ttool here/portal_trees; |
---|
| 9 | wtool here/portal_workflow; |
---|
| 10 | ptool here/portal_cpsportlets; |
---|
| 11 | context_url python:here.getContextUrl(utool=utool); |
---|
| 12 | here_url here/absolute_url; |
---|
| 13 | base_url here/getBaseUrl; |
---|
| 14 | member mtool/getAuthenticatedMember; |
---|
| 15 | isAnon mtool/isAnonymousUser; |
---|
| 16 | isHomeless python:isAnon or member.getProperty('homeless', 0); |
---|
| 17 | isHomeless python:(isHomeless == '0' and [0] or [isHomeless])[0]; |
---|
| 18 | actions python:atool.listFilteredActionsFor(here); |
---|
| 19 | wf_state python:wtool.getInfoFor(here,'review_state',''); |
---|
| 20 | uname python: isAnon and 'Guest' or member.getUserName(); |
---|
| 21 | checkPerm nocall: mtool/checkPermission; |
---|
| 22 | cpsmcat nocall:here/translation_service; |
---|
| 23 | locale here/translation_service/getSelectedLanguage; |
---|
| 24 | in_ws here/isInWorkspace; |
---|
| 25 | waeup_skin here/get_waeup_skin; |
---|
| 26 | "> |
---|
| 27 | <metal:block define-slot="doctype"><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
---|
| 28 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
| 29 | </metal:block> |
---|
| 30 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" |
---|
| 31 | lang="en"> |
---|
| 32 | <head> |
---|
| 33 | <metal:block use-macro="here/header_lib_header/macros/header|here/header_lib/macros/header"> |
---|
| 34 | <metal:block fill-slot="base"> |
---|
| 35 | <metal:block define-slot="base"> |
---|
| 36 | <base href="" |
---|
| 37 | tal:attributes="href string:${here_url}/" /> |
---|
| 38 | </metal:block> |
---|
| 39 | </metal:block> |
---|
| 40 | <metal:block fill-slot="head_slot"> |
---|
| 41 | <metal:block define-slot="head_slot" /> |
---|
| 42 | </metal:block> |
---|
| 43 | <metal:block fill-slot="style_slot"> |
---|
| 44 | <link rel="stylesheet" type="text/css" media="all" |
---|
| 45 | tal:attributes="href string:${base_url}common.css" /> |
---|
| 46 | <metal:block define-slot="style_slot" /> |
---|
| 47 | </metal:block> |
---|
| 48 | <metal:block fill-slot="javascript_head_slot"> |
---|
| 49 | <metal:block define-slot="javascript_head_slot" /> |
---|
| 50 | </metal:block> |
---|
| 51 | </metal:block> |
---|
| 52 | <link rel="icon" |
---|
| 53 | href="ng.png" |
---|
| 54 | tal:attributes="href string:${base_url}ng.png" |
---|
| 55 | type="image/png" /> |
---|
| 56 | <link rel="shortcut icon" |
---|
| 57 | href="icons/ng.png" |
---|
| 58 | tal:attributes="href string:${base_url}ng.png" |
---|
| 59 | type="image/png" /> |
---|
| 60 | </head> |
---|
| 61 | |
---|
| 62 | <body tal:condition="not:emptybody" |
---|
| 63 | style="margin: 0px;" |
---|
| 64 | tal:attributes="onload here/getOnLoad|string:setFocus();"> |
---|
| 65 | |
---|
| 66 | |
---|
| 67 | <table summary="Main Block" cellpadding="0" cellspacing="0"> |
---|
| 68 | <tr> |
---|
| 69 | <td valign="top" style="width:700px"> |
---|
| 70 | <div style="padding:2em; text-align: left;" |
---|
| 71 | class="fontColordefaultfontcolors fontShapeTitleindex"> |
---|
| 72 | <metal:block use-macro="here/generic_lib_portal_message/macros/portal_message" /> |
---|
| 73 | <metal:block define-slot="header" /> |
---|
| 74 | <metal:block define-slot="main" /> |
---|
| 75 | <metal:block define-slot="sub" /> |
---|
| 76 | </div> |
---|
| 77 | </td> |
---|
| 78 | </tr> |
---|
| 79 | </table> |
---|
| 80 | </body> |
---|
| 81 | </html> |
---|
| 82 | </metal:block> |
---|