source: products/qPloneDropDownMenu/tags/0.1.8/skins/qPloneDropDownMenu/prefs_dropdownmenu_edit_form.cpt

Last change on this file was 1, checked in by myroslav, 19 years ago

Building directory structure

File size: 2.9 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
31    Quintagroup.</p>
32
33    <p>In case you have some problems following editing DropDown Menu you
34    can only click <a href="dropdownmenu_update">regenerate menu</a>, and
35    you'll get the initial portal menu.</p>
36 
37    <form name="menu_edit_form"
38          action="."
39          method="post"
40          tal:attributes="action string:${here/getId}/${template/getId}" >
41
42     <div class="formControls" align="right"
43             tal:define="process_creation request/process_creation|nothing;">
44         <input class="context"
45                tabindex=""
46                type="submit"
47                value="Regenerate Menu"
48                name="form.button.Regenerate"
49                i18n:attributes="value"
50                tal:attributes="tabindex tabindex/next"
51                />
52         
53     </div>
54
55     <div class="field">
56         <label for="menu" i18n:translate="label_portaltabs">Portal tabs</label>
57                   
58         <div class="formHelp" i18n:translate="help_portaltabs_edit">
59         Here you can change your portal tabs.
60         </div>
61     
62         <textarea cols="80"
63                   rows="20"
64                   tabindex=""
65                   name="menu"
66                   id="menu"
67                   tal:content="portal/portal_properties/dropdownmenu_properties/menu"
68                   tal:attributes="tabindex tabindex/next;"
69                   >Portal Tabs</textarea>
70     </div>
71 
72     <div class="formControls"
73             tal:define="process_creation request/process_creation|nothing;">
74         <input class="context"
75                tabindex=""
76                type="submit"
77                value="Save"
78                name="form.button.Save"
79                i18n:attributes="value"
80                tal:attributes="tabindex tabindex/next"
81                />
82         
83     </div>
84
85     <input type="hidden" name="form.submitted" value="1" />
86    </form>
87
88           
89  </div>
90</body>
91</html>
Note: See TracBrowser for help on using the repository browser.