File:  [Repository] / ECHO_content / zpt / ChangeECHO_partner.zpt
Revision 1.8: 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>
    3: 			Change Partner Information
    4: 		</h2>
    5: 		<form name="form" action="changeECHO_partner">
    6: 		
    7: 		<table>
    8: 		<tr>
    9: 			<td>
   10: 			<b>
   11: 				url: 
   12: 			</b>
   13: 			</td>
   14: 			<td>
   15: 			<input type="text" name="url" tal:attributes="value here/url" size=45>
   16: 			</td>
   17: 		</tr>
   18: 		
   19: 		<tr>
   20: 			<td>
   21: 			<b>
   22: 				Director: 
   23: 			</b>
   24: 			</td>
   25: 			<td>
   26: 
   27: 			<input type="text" name="person" tal:attributes="value python:getattr(here, 'person','')" size=45>
   28: 
   29: 			</td>
   30: 		</tr>
   31: 		
   32: 		<tr>
   33: 			<td>
   34: 			<b>
   35: 				Email: 
   36: 			</b>
   37: 			</td>
   38: 			<td>
   39: 
   40: 			<input type="text" name="email" tal:attributes="value python:getattr(here, 'email','')" size=45>
   41: 	
   42: 			</td>
   43: 		</tr>
   44: 		
   45: 		<tr>
   46: 			<td>
   47: 			<b>
   48: 				Country: 
   49: 			</b>
   50: 			</td>
   51: 			<td>
   52: 
   53: 			<input type="text" name="country" tal:attributes="value python:getattr(here, 'country','')" size=45>
   54: 
   55: 			</td>
   56: 		</tr>
   57: 		
   58: 		<tr>
   59: 			<td>
   60: 			<b>
   61: 				Specific Color (hexadecimal): 
   62: 			</b>
   63: 			</td>
   64: 			<td>
   65: 
   66: 			<input type="text" name="color" tal:attributes="value python:getattr(here, 'color','')" size=45>
   67: 
   68: 			</td>
   69: 		</tr>
   70: 		
   71: 		<tr>
   72: 			<td>
   73: 			<i>
   74: 				Copyright:
   75: 			</i>
   76: 			</td>
   77: 			<td>
   78: 			<select name="copyrightType" tal:content="structure python:here.copyrightTypeSelector_HTML(selected=getattr(here,'copyrightType',''))" />
   79: 			<input type="submit" value="Change">
   80: 			</td>
   81: 		</tr>
   82: 		</form>
   83: <h1 tal:replace="structure here/manage_page_footer">Footer</h1>

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