source: WAeUP_SRP/base/skins/waeup_default/import_form.pt @ 2259

Last change on this file since 2259 was 2259, checked in by joachim, 17 years ago

new feature bypass catalog_queue

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1<tal:block define="rendered_main options/rendered;
2           portal_status_message options/psm;
3           data_storage options/ds;
4           formaction options/formaction|string:import;
5           button options/button|string:Import;
6           creation creation|nothing;"
7           >
8  <metal:block define-macro="edit_form">
9    <metal:block use-macro="here/main_template/macros/master">
10      <metal:block fill-slot="main">
11      <h3>Import Data!</h3>
12      <br />     
13        <form action="" id="editForm" method="post"
14              enctype="multipart/form-data" class="workflow"
15              tal:attributes="action formaction"
16              >
17          <div tal:replace="structure rendered_main" />
18          <br />
19          <input type="submit" class="standalone"
20                 name="import" value="import"
21                 tal:attributes="value button"
22                 tal:condition="not:creation" />
23          <span tal:define="bypass here/portal_catalog/getBypassQueue|nothing">
24            <input type="submit" class="standalone"
25                   name="enable_bypass" value="bypass QueueCatalog"
26                   tal:condition="not:bypass" />
27            <input type="submit" class="standalone"
28                   name="disable_bypass" value="use QueueCatalog"
29                   tal:condition="bypass" />
30          </span>
31        </form>
32      </metal:block>
33      <metal:block fill-slot="sub">
34      </metal:block>
35    </metal:block>
36  </metal:block>
37</tal:block>
Note: See TracBrowser for help on using the repository browser.