source: WAeUP_SRP/trunk/skins/waeup_default/waeup_edit_buttons.pt @ 2035

Last change on this file since 2035 was 2029, checked in by Henrik Bettermann, 17 years ago

edit_and_view_button disabled

  • Property Id set to skins/waeup_default/waeup_edit_form.pt
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1<metal:block define-macro="buttons">
2  <input type="submit" name="cpsdocument_edit_button"
3         class="standalone" value="button_change"
4         id="cpsdocument_edit_button"
5         i18n:attributes="value"
6         tal:condition="not:creation" />
7  <input type="submit" name="cpsdocument_edit_and_view_button"
8         class="standalone" value="button_change_and_view"
9         id="cpsdocument_edit_and_view_button"
10         i18n:attributes="value"
11         tal:condition="python:creation and 0" />
12  <input type="submit" name="cpsdocument_create_button"
13         class="standalone" value="button_create"
14         i18n:attributes="value"
15         id="cpsdocument_create_button"
16         tal:condition="creation" />
17  <tal:block define="
18  use_ajax use_ajax|python:True;
19  content_changed python:cpsmcat('psm_content_changed');
20  content_error python:cpsmcat('psm_content_error');
21  working python:cpsmcat('psm_ajax_working')"
22  condition="python:use_ajax">
23    <script type="text/javascript"
24            tal:content="string:
25            // unobtrusive form controller, that leaves the form accessible
26            var editor = new CPSDocumentEditor(
27            'editForm',
28            $$('editForm').action,
29            'editForm',
30            new Array('cpsdocument_edit_button'),
31            new Array('cpsdocument_edit_and_view_button'),
32            'page_title',
33            {content_changed: '${content_changed}',
34            working: '${working}',
35            content_error: '${content_error}'},
36            null,
37            new Array('addwidget_button'));"
38            >
39    </script>
40  </tal:block>
41</metal:block>
Note: See TracBrowser for help on using the repository browser.