source: products/Products.qPloneDropDownMenu/trunk/Products/qPloneDropDownMenu/skins/qPloneDropDownMenu/prefs_dropdownmenu_edit_form.cpt @ 2583

Last change on this file since 2583 was 2583, checked in by fenix, 14 years ago

Removed all tabindex from templates.

File size: 3.0 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                 type="submit"
45                 value="Regenerate Menu"
46                 name="form.button.Regenerate"
47                 i18n:attributes="value" />
48      </div>
49
50      <dl class="portalMessage warning"
51          tal:condition="not: portal/portal_properties/dropdownmenu_properties/menu|nothing">
52        <dt>Warning</dt>
53        <dd>
54          Dropdown menu property sheet or it's 'menu' field were deleted from portal_properties tool.
55          Before saving any portal tabs you have to 'Regenerate Menu'. This action will add
56          'menu' field back to your properties.
57        </dd>
58      </dl>
59
60      <div class="field">
61          <label for="menu" i18n:translate="label_portaltabs">Portal tabs</label>
62          <div class="formHelp" i18n:translate="help_portaltabs_edit">Here you can change your portal tabs.</div>
63          <textarea cols="80"
64                    rows="20"
65                    name="menu"
66                    id="menu"
67                    tal:content="portal/portal_properties/dropdownmenu_properties/menu|string:">Portal Tabs</textarea>
68      </div>
69
70      <div class="formControls"
71           tal:define="process_creation request/process_creation|nothing;">
72        <input class="context"
73               type="submit"
74               value="Save"
75               name="form.button.Save"
76               i18n:attributes="value" />
77      </div>
78
79      <input type="hidden" name="form.submitted" value="1" />
80    </form>
81
82  </div>
83</body>
84</html>
Note: See TracBrowser for help on using the repository browser.