Update of /cvsroot/openinteract/OpenInteract/pkg/base_page/template
In directory usw-pr-cvs1:/tmp/cvs-serv22158
Modified Files:
page_form.tmpl
Log Message:
shuffle shuffle
Index: page_form.tmpl
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_page/template/page_form.tmpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** page_form.tmpl 2001/10/20 15:14:30 1.1
--- page_form.tmpl 2001/10/24 20:53:51 1.2
***************
*** 1,4 ****
! [%- DEFAULT theme = OI.theme_properties;
! count = 0 -%]
[%- OI.box_add( 'edit_document_box', location = page.location );
--- 1,3 ----
! [%- DEFAULT theme = OI.theme_properties; count = 0 -%]
[%- OI.box_add( 'edit_document_box', location = page.location );
***************
*** 13,18 ****
made instantly.</p>
! <form name="page" method="POST"
! action="/Page/edit/">
[% INCLUDE table_bordered_begin( table_width = '90%' ) -%]
--- 12,16 ----
made instantly.</p>
! <form name="page" method="POST" action="/Page/edit/">
[% INCLUDE table_bordered_begin( table_width = '90%' ) -%]
***************
*** 74,79 ****
[%- count = count + 1 -%]
! [% INCLUDE label_form_checkbox_row( label = 'Active?', name = 'is_active',
! value = 'yes', picked = page.is_active ) -%]
[%- count = count + 1 -%]
--- 72,92 ----
[%- count = count + 1 -%]
! <tr bgcolor="[% PROCESS row_color %]"><td align="center">
! <table border="0" cellpadding="1">
! <tr align="center" valign="bottom">
! <td>[% PROCESS show_label( label = 'Active?') %]</td>
! <td>[% PROCESS show_label( label = 'Store as file?') %]</td>
! <td>[% PROCESS show_label( label = 'Parse as template?') %]</td>
! </tr>
! <tr align="center" valign="middle">
! <td>[% INCLUDE form_checkbox( name = 'is_active', value = 'yes',
! picked = page.is_active ) %]</td>
! <td>[% INCLUDE form_checkbox( name = 'is_file', value = 'yes',
! picked = page.is_file ) %]</td>
! <td>[% INCLUDE form_checkbox( name = 'template_parse', value = 'yes',
! picked = page.template_parse ) %]</td>
! </tr>
! </table>
! </tr>
[%- count = count + 1 -%]
***************
*** 83,91 ****
[%- count = count + 1 -%]
! [% INCLUDE label_form_submit_row( value = 'Modify' ) -%]
[% PROCESS table_bordered_end -%]
! [%- form_hidden( name = 'old_location', value = page.location ) -%]
</form>
--- 96,104 ----
[%- count = count + 1 -%]
! [% INCLUDE label_form_submit_row( value = 'Modify', reset = 1 ) -%]
[% PROCESS table_bordered_end -%]
! [%- PROCESS form_hidden( name = 'old_location', value = page.location ) -%]
</form>
|