41 lines
2.2 KiB
XML
41 lines
2.2 KiB
XML
<tal:main define="tool context/getTool">
|
|
<html metal:use-macro="context/ui/template/macros/main">
|
|
<metal:fill fill-slot="content"
|
|
tal:define="contextObj context/getParentNode;
|
|
dummy python: contextObj.allows('Modify portal content', raiseError=True);
|
|
errors request/errors | python:{};
|
|
layoutType python:'edit';
|
|
layout python: contextObj.getPageLayout(layoutType);
|
|
page request/page|python:'main';
|
|
cssJs python: {};
|
|
groupedWidgets python: contextObj.getGroupedAppyTypes(layoutType, page, cssJs=cssJs);
|
|
phaseInfo python: contextObj.getAppyPhases(currentOnly=True, layoutType=layoutType);
|
|
phase phaseInfo/name;
|
|
confirmMsg request/confirmMsg | nothing;"
|
|
tal:on-error="structure python: tool.manageError(error)">
|
|
|
|
<tal:comment replace="nothing">Include type-specific CSS and JS.</tal:comment>
|
|
<link tal:repeat="cssFile cssJs/css" rel="stylesheet" type="text/css"
|
|
tal:attributes="href string:$appUrl/ui/$cssFile"/>
|
|
<script tal:repeat="jsFile cssJs/js" type="text/javascript"
|
|
tal:attributes="src string:$appUrl/ui/$jsFile"></script>
|
|
|
|
<metal:prologue use-macro="context/ui/page/macros/prologue"/>
|
|
<form id="appyEditForm" name="appyEditForm" method="post" enctype="multipart/form-data"
|
|
tal:attributes="action python: contextObj.absolute_url()+'/do';
|
|
class python: test(confirmMsg, 'atBaseEditForm', 'enableUnloadProtection atBaseEditForm')">
|
|
<input type="hidden" name="action" value="Update"/>
|
|
<input type="hidden" name="page" tal:attributes="value page"/>
|
|
<input type="hidden" name="nav" tal:attributes="value request/nav|nothing"/>
|
|
<input type="hidden" name="is_new" tal:attributes="value contextObj/isTemporary"/>
|
|
<input type="hidden" name="confirmed" value="False"/>
|
|
<metal:show use-macro="context/ui/page/macros/show"/>
|
|
</form>
|
|
<script tal:condition="confirmMsg"
|
|
tal:content="python: 'askConfirm(\'script\', \'postConfirmedEditForm()\', \'%s\')' % confirmMsg">
|
|
</script>
|
|
<metal:footer use-macro="context/ui/page/macros/footer"/>
|
|
</metal:fill>
|
|
</html>
|
|
</tal:main>
|