File:  [Repository] / ECHO_content / zpt / ChangeECHO_pageTemplateMain.zpt
Revision 1.4: download - view: text, annotated - select for diffs - revision graph
Fri Jul 29 11:17:08 2005 UTC (18 years, 11 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
prefix and suffix addedCVS: ----------------------------------------------------------------------

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

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