version 1.2, 2004/04/16 10:24:09
|
version 1.5, 2005/12/13 12:45:22
|
Line 1
|
Line 1
|
<html> |
<h1 tal:replace="structure here/manage_page_header">Header</h1> |
<body> |
|
<h2>Change groups</h2> |
<h2>Change groups</h2> |
<form name="form" action="changeECHO_group"> |
<form name="form" action="changeECHO_group"> |
<table> |
<table> |
Line 19
|
Line 18
|
<tr><td><i>Background color:</i> </td><td><input type="text" name="bgcolour" tal:attributes="value here/getBgcolour" size=100></td></tr> |
<tr><td><i>Background color:</i> </td><td><input type="text" name="bgcolour" tal:attributes="value here/getBgcolour" size=100></td></tr> |
</table> |
</table> |
|
|
<h4>Coords</h4> |
|
<table> |
|
<tr tal:repeat="coord python:here.getCoords()"><td><b> Coords: </b></td><td><input type="text" name="coords" tal:attributes="value coord"></td></tr> |
|
</table> |
|
<h3> Credits:</h3> |
|
|
|
<div tal:repeat="item here/partners/getPartners"> |
|
|
|
<div tal:condition="python:item.getId() in here.getCredits()"> |
|
|
|
<input type="checkbox" name="credits" tal:attributes="value item/id" tal:content="item/title" checked/> |
|
</div> |
|
<div tal:condition="not:python:item.getId() in here.getCredits()"> |
|
<input type="checkbox" name="credits" tal:attributes="value item/id" tal:content="item/title"/> |
|
</div> |
|
|
|
</div> |
|
<input type="submit" value="change"><br><br> |
<input type="submit" value="change"><br><br> |
</form> |
</form> |
</body> |
<h1 tal:replace="structure here/manage_page_footer">Footer</h1> |
</html> |
|
|
|