File:  [Repository] / ECHO_content / zpt / ECHO_collection_template_standard.zpt
Revision 1.7: download - view: text, annotated - select for diffs - revision graph
Wed Nov 24 15:20:14 2004 UTC (19 years, 7 months ago) by dwinter
Branches: MAIN
CVS tags: cleanup, Root_cleanup, HEAD
nminor

    1: <table class="collection" border="0" cellpadding="6" width="100%">
    2: <div tal:omit-tag="" tal:define="item python:here">
    3: <!-- Headline (Label and Title) for ECHO_collections -->
    4: <tr>
    5: 	<td width="135" align="center">
    6: 		<a class="label" tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()">
    7: 			label
    8: 		</a>
    9: 	</td>
   10: 	<td>
   11: 		<h3 class="collection">
   12: 			<a tal:content="structure here/getTitle" tal:attributes="href python:here.absolute_url()">
   13: 				Title 
   14: 			</a>
   15: 		</h3>
   16: 	</td>
   17: </tr>
   18: <!-- -->
   19: <!-- Institution Logos -->
   20: <span tal:omit-tag="" tal:condition="item/credits">
   21: 	<span tal:repeat="credit item/credits">
   22: 		<span tal:omit-tag="" tal:condition="not:python:credit==''">
   23: 		<tr>
   24: 			<td align="right" valign="middle" width="135pt">
   25: 				<span tal:content="structure python:here.getCreditObject(credit)">
   26: 					title
   27: 				</span>
   28: 			</td>
   29: 			<td>
   30: 			
   31: <!-- Institution Links -->
   32: <!-- link of the institution exists -->
   33: 				<span tal:condition="python:here.getCreditObject(credit).url">
   34: 				<h4>
   35: 					<a tal:attributes="href python:here.getCreditObject(credit).url" target="_blank">
   36: 						<span tal:content="python:here.getCreditObject(credit).title">
   37: 							title
   38: 						</span>
   39: 					</a>
   40: 				</h4>
   41: 			</span>
   42: <!-- -->
   43: <!-- no link -->
   44: 			<span tal:condition="not:python:here.getCreditObject(credit).url">
   45: 			<h4>
   46: 				<span tal:content="python:here.getCreditObject(credit).title">
   47: 					title
   48: 				</span>
   49: 			</h4>
   50: 		</span>
   51: <!-- -->
   52: <!-- -->
   53: 	</td>
   54: </tr>
   55: </span>
   56: </span>
   57: </span>
   58: <tr>
   59: <td colspan="2">
   60: 	<span tal:condition="item/description">
   61: 	<p>
   62: 		<span tal:replace="structure item/description">
   63: 			DESCRIPTION
   64: 		</span>
   65: 	</p>
   66: </span>
   67: </td>
   68: </tr>
   69: <span tal:condition="python:here.getSubCols(subColTypes=['ECHO_externalLink'])">
   70: <tr>
   71: 	<td colspan="2">
   72: 		<b>
   73: 			Other Presentations on the Web: 
   74: 		</b>
   75: 		<br>
   76: 		&nbsp; 
   77: 		<div tal:omit-tag="" tal:repeat="item python:here.getSubCols(subColTypes=['ECHO_externalLink'])">
   78: 			<div tal:replace="structure item/content_html" />
   79: 		</div>
   80: 	</td>
   81: </tr>
   82: </span>
   83: 
   84: 
   85: </div>
   86: </table>

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