File:  [Repository] / ECHO_content / zpt / ChangeECHO_partner.zpt
Revision 1.4: download - view: text, annotated - select for diffs - revision graph
Mon Jun 7 14:45:04 2004 UTC (20 years ago) by jdamerow
Branches: MAIN
CVS tags: HEAD
partners erweitert korrektur

<html>
	<body>
		<h2>
			Change Partner Information
		</h2>
		<form name="form" action="changeECHO_partner">
		
		<table>
		<tr>
			<td>
			<b>
				url: 
			</b>
			</td>
			<td>
			<input type="text" name="url" tal:attributes="value here/url">
			</td>
		</tr>
		
		<tr>
			<td>
			<b>
				Director: 
			</b>
			</td>
			<td>
			<span tal:condition="python:hasattr(here,'person')">
			<input type="text" name="person" tal:attributes="value here/person">
			</span>
			<span tal:condition="not:python:hasattr(here,'person')">
			<input type="text" name="person">
			</span>
			</td>
		</tr>
		
		<tr>
			<td>
			<b>
				Email: 
			</b>
			</td>
			<td>
			<span tal:condition="python:hasattr(here,'email')">
			<input type="text" name="email" tal:attributes="value here/email">
			</span>
			<span tal:condition="not:python:hasattr(here,'email')">
			<input type="text" name="email">
			</span>
			</td>
		</tr>
		
		<tr>
			<td>
			<b>
				Country: 
			</b>
			</td>
			<td>
			<span tal:condition="python:hasattr(here,'country')">
			<input type="text" name="country" tal:attributes="value here/country">
			</span>
			<span tal:condition="not:python:hasattr(here,'country')">
			<input type="text" name="country">
			</span>
			</td>
		</tr>
		
		<tr>
			<td>
			<i>
				Copyright:
			</i>
			</td>
			<td>
			<select name="copyrightType" tal:content="structure python:here.copyrightTypeSelector_HTML(selected=getattr(here,'copyrightType',''))" />
			<input type="submit" value="Change">
			</td>
		</tr>
		</form>
	</body>
</html>

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