File:  [Repository] / ECHO_content / zpt / ChangeECHO_pageTemplateMain.zpt
Revision 1.5: download - view: text, annotated - select for diffs - revision graph
Tue Dec 13 12:45:22 2005 UTC (18 years, 6 months ago) by dwinter
Branches: MAIN
CVS tags: cleanup, Root_cleanup, HEAD
change utf-8 handlingCVS: ----------------------------------------------------------------------

    1: <h1 tal:replace="structure here/manage_page_header">Header</h1>
    2: <h2>Main Config <span tal:replace="here/getId"/></h2>
    3: 
    4: <form action="changeECHO_pageTemplateMain" method="post">
    5: 
    6: <table>
    7: <tr>
    8: 	<td>
    9: 	<b>Weight</b>
   10: 	</td>
   11: 	<td><input name="weight"  tal:attributes="value here/getWeight" size="50"></td>
   12: </tr>
   13: <tr>
   14: 	<td>
   15: 	<b>Content Type</b>
   16: 	</td>
   17: 	<td><input name="contentType"  tal:attributes="value here/getcontentType" size="50"></td>
   18: </tr>
   19: <tr>
   20: 	<td>
   21: 	<b>Label</b>
   22: 	</td>
   23: 	<td>
   24: 	<input name="label"  tal:attributes="value here/getLabel" size="50">
   25: 	</td>
   26: </tr>
   27: <tr>
   28: 	<td>
   29: 	<b>Description</b>
   30: 	</td>
   31: 	<td>
   32: 	<textarea name="description" cols="80" rows="10" tal:content="python:getattr(here,'description','')"/>
   33: 	</td>
   34: </tr>
   35:      
   36:       <tr><td><i>Clickable also if selected:<i></td><td> 
   37: 		<input tal:condition="python:getattr(here,'isAlwaysClickable',None)" type="checkbox" name="isAlwaysClickable"  checked value="yes">
   38: 		<input tal:condition="not:python:getattr(here,'isAlwaysClickable',None)" type="checkbox" name="isAlwaysClickable"  value="yes">
   39:       </td></tr>
   40: 
   41: <tr><td>
   42: <i>Prefix for output in navigation</i></td><td><input tal:attributes="value python:getattr(here,'prefix','')" name="prefix" size=20>
   43: </td></tr>
   44: <tr><td>
   45: <i>Suffix for output in navigation</i></td><td><input tal:attributes="value python:getattr(here,'suffix','')" name="suffix" size=20>
   46: </td></tr>
   47: 
   48: </table>
   49: <p><input type="submit" Value="Change">
   50: </form>
   51: 
   52: <h1 tal:replace="structure here/manage_page_footer">Footer</h1>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>