source: WAeUP_SRP/trunk/skins/waeup_academics/academics_edit_buttons.pt @ 331

Last change on this file since 331 was 309, checked in by joachim, 18 years ago

=types changed

File size: 1.7 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="not:creation" />
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:edition and 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    </script>
39  </tal:block>
40</metal:block>
Note: See TracBrowser for help on using the repository browser.