File:  [Repository] / ECHO_content / zpt / ECHO_resource_template_standard.zpt
Revision 1.6: download - view: text, annotated - select for diffs - revision graph
Tue Aug 3 12:15:09 2004 UTC (19 years, 11 months ago) by jdamerow
Branches: MAIN
CVS tags: cleanup, Root_cleanup, HEAD
resource_template_standard geƤnert

    1: <table cellpadding="3" width="95%" border=0>
    2: 	<tr>
    3: 		
    4: 		<td>
    5: 			<!-- Label -->
    6: 			<!-- with link if there is one -->
    7: 			<span tal:condition="here/link">
    8: 					<b><a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
    9: 						label
   10: 					</a></b>
   11: 			</span>
   12: 			
   13: 			<!-- without link if there isn't one -->
   14: 			<span tal:condition="not:here/link">
   15: 				<u>
   16: 					<b tal:content="structure here/getLabel">
   17: 						label</b>
   18: 				</u>
   19: 			</span>
   20: 			<!-- -->
   21: 			
   22: 		</td>
   23: 	</tr>
   24: 	
   25: 	<tr>
   26: 		
   27: 		<td>
   28: 			<!-- Title -->
   29: 			<span tal:content="structure here/getTitle">
   30: 				Title
   31: 			</span>
   32: 			<!-- -->
   33: 		</td>
   34: 	</tr>
   35: 	
   36: 	<!-- Description if there ist one -->
   37: 	<tr tal:condition="here/description">
   38: 		
   39: 		<td>
   40: 			<span tal:replace="structure here/description">
   41: 				DESCRIPTION
   42: 			</span>
   43: 		</td>
   44: 	</tr>
   45: 	<!-- -->
   46: 	
   47: 	<!-- Copyrights -->
   48: 	
   49: 	<tr tal:condition="not:python:here.getCopyrightsHTML()=='ERROR'">
   50: 		<td align=right>
   51: 			<span tal:repeat="item python:here.getCopyrightsHTML()">
   52: 			    <span tal:condition="not:python:item[0] == 'empty'">
   53: 			    	<a tal:attributes="href python:item[0]" target="_blank">
   54: 			    	<span tal:content="structure python:item[4]"/>
   55: 			    	<span tal:condition="not:python:item[1]=='all'">
   56: 			    	(<span tal:content="python:item[1]"/>)</span>
   57: 					<span tal:content="python:here.getPartnerFromIDParameter(item[2])[0][1].title"/><br>
   58: 					</a>
   59: 				</span>
   60: 				<span tal:condition="python:item[0] == 'empty'">
   61: 			    	<span tal:content="structure python:item[4]"/>
   62: 			    	<span tal:condition="not:python:item[1]=='all'">
   63: 			    	(<span tal:content="python:item[1]"/>)</span>
   64: 					<span tal:content="python:here.getPartnerFromIDParameter(item[2])[0][1].title"/><br>
   65: 				</span>
   66: 				
   67: 			</span>
   68: 		</td>
   69: 	</tr>
   70: 	
   71: 	<!-- -->
   72: 	
   73: 	
   74: 	<tr tal:condition="python:here.getSubCols(subColTypes=['ECHO_externalLink'])">
   75: 		
   76: 		<td>
   77: 			<!-- Lists externalLinks if there are some -->
   78: 			<table border="0">
   79: 				<tr>
   80: 					<td width="10px">
   81: 					</td>
   82: 					<td>
   83: 						<h4>
   84: 							Futher Information: 
   85: 						</h4>
   86: 					</td>
   87: 				</tr>
   88: 				<tr>
   89: 					<td>
   90: 					</td>
   91: 					<td>
   92: 						<div tal:omit-tag="" tal:repeat="item python:here.getSubCols(subColTypes=['ECHO_externalLink'])">
   93: 							<div tal:replace="structure item/content_html" />
   94: 						</div>
   95: 					</td>
   96: 				</tr>
   97: 			</table>
   98: 			<!-- -->
   99: 		</td>
  100: 	</tr>
  101: 	
  102: </table>

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