version 1.7, 2004/05/07 14:00:13
|
version 1.10, 2005/12/13 12:45:22
|
Line 1
|
Line 1
|
<html> |
<h1 tal:replace="structure here/manage_page_header">Header</h1> |
<body> |
|
<h2>Change Resource</h2> |
<h2>Change Resource</h2> |
<form name="form" action="changeECHO_resource"> |
<form name="form" action="changeECHO_resource"> |
<table> |
<table> |
Line 16
|
Line 15
|
</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" size=40></td></tr> |
|
</table> |
|
<h4>View Type</h4> |
<h4>View Type</h4> |
<p tal:repeat="viewClass here/viewClassificationList"> |
<p tal:repeat="viewClass here/viewClassificationList"> |
<input tal:condition="python:here.getViewClassification()==viewClass" type="radio" name="viewClassification" tal:attributes="value viewClass" checked/> |
<input tal:condition="python:here.getViewClassification()==viewClass" type="radio" name="viewClassification" tal:attributes="value viewClass" checked/> |
Line 28
|
Line 23
|
</p> |
</p> |
|
|
<b> Credits:</b><br> |
<b> Credits:</b><br> |
<div tal:repeat="item here/partners/getPartners"> |
<div tal:repeat="item here/getPartners"> |
|
|
<div tal:condition="python:item.getId() in here.getCredits()"> |
<div tal:condition="python:item.getId() in here.getCredits()"> |
<input type="checkbox" name="credits" tal:attributes="value item/id" checked/><span tal:content="item/title"/><br/> |
<input type="checkbox" name="credits" tal:attributes="value item/id" checked/><span tal:content="item/title"/><br/> |
Line 41
|
Line 36
|
<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> |
|
|
|