source: products/qPloneDropDownMenu/trunk/skins/qPloneDropDownMenu/prefs_dropdownmenu_edit_form.cpt @ 1591

Last change on this file since 1591 was 372, checked in by chervol, 18 years ago

fixed interfaces

File size: 3.2 KB
Line 
1<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"
2      xmlns:metal="http://xml.zope.org/namespaces/metal"
3      xmlns:tal="http://xml.zope.org/namespaces/tal"
4      lang="en-US"
5      metal:use-macro="here/prefs_main_template/macros/master"
6      i18n:domain="qPloneDropDownMenu">
7
8  <metal:block fill-slot="top_slot"
9             tal:define="dummy python:request.set('disable_border',1)" />
10
11<body>
12  <div metal:fill-slot="prefs_configlet_main"
13       tal:define="errors python:request.get('errors', {})">
14
15    <h1 i18n:translate="heading_plonedropdownmenu">Plone Drop Down Menu</h1>
16    <a href=""
17       class="link-parent"
18       tal:attributes="href string: $portal_url/plone_control_panel"
19       i18n:translate="label_up_to_plone_setup">
20      Up to Plone Setup
21    </a>
22
23    <div class="documentDescription"
24         i18n:translate="description_plonedropdownmenu">
25      Plone Drop Down Menu ...
26    </div>
27
28    <h2>Post-install instructions</h2>
29
30    <p>Congratulations, you've installed Plone Drop Down Menu product from Quintagroup.</p>
31
32    <p>In case you have some problems following editing DropDown Menu you
33    can only click <a href="dropdownmenu_update">regenerate menu</a>, and
34    you'll get the initial portal menu.</p>
35
36    <form name="menu_edit_form"
37          action="."
38          method="post"
39          tal:attributes="action string:${here/absolute_url}/${template/getId}" >
40
41      <div class="formControls" align="right"
42           tal:define="process_creation request/process_creation|nothing;">
43          <input class="context"
44                 tabindex=""
45                 type="submit"
46                 value="Regenerate Menu"
47                 name="form.button.Regenerate"
48                 i18n:attributes="value"
49                 tal:attributes="tabindex tabindex/next" />
50      </div>
51
52      <dl class="portalMessage warning"
53          tal:condition="not: portal/portal_properties/dropdownmenu_properties/menu|nothing">
54        <dt>Warning</dt>
55        <dd>
56          Dropdown menu property sheet or it's 'menu' field were deleted from portal_properties tool.
57          Before saving any portal tabs you have to 'Regenerate Menu'. This action will add
58          'menu' field back to your properties.
59        </dd>
60      </dl>
61
62      <div class="field">
63          <label for="menu" i18n:translate="label_portaltabs">Portal tabs</label>
64          <div class="formHelp" i18n:translate="help_portaltabs_edit">Here you can change your portal tabs.</div>
65          <textarea cols="80"
66                    rows="20"
67                    tabindex=""
68                    name="menu"
69                    id="menu"
70                    tal:content="portal/portal_properties/dropdownmenu_properties/menu|string:"
71                    tal:attributes="tabindex tabindex/next;">Portal Tabs</textarea>
72      </div>
73
74      <div class="formControls"
75           tal:define="process_creation request/process_creation|nothing;">
76        <input class="context"
77               tabindex=""
78               type="submit"
79               value="Save"
80               name="form.button.Save"
81               i18n:attributes="value"
82               tal:attributes="tabindex tabindex/next" />
83      </div>
84
85      <input type="hidden" name="form.submitted" value="1" />
86    </form>
87
88  </div>
89</body>
90</html>
Note: See TracBrowser for help on using the repository browser.