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, 9 months ago) by jdamerow
Branches: MAIN
CVS tags: cleanup, Root_cleanup, HEAD
resource_template_standard geƤnert

<table cellpadding="3" width="95%" border=0>
	<tr>
		
		<td>
			<!-- Label -->
			<!-- with link if there is one -->
			<span tal:condition="here/link">
					<b><a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
						label
					</a></b>
			</span>
			
			<!-- without link if there isn't one -->
			<span tal:condition="not:here/link">
				<u>
					<b tal:content="structure here/getLabel">
						label</b>
				</u>
			</span>
			<!-- -->
			
		</td>
	</tr>
	
	<tr>
		
		<td>
			<!-- Title -->
			<span tal:content="structure here/getTitle">
				Title
			</span>
			<!-- -->
		</td>
	</tr>
	
	<!-- Description if there ist one -->
	<tr tal:condition="here/description">
		
		<td>
			<span tal:replace="structure here/description">
				DESCRIPTION
			</span>
		</td>
	</tr>
	<!-- -->
	
	<!-- Copyrights -->
	
	<tr tal:condition="not:python:here.getCopyrightsHTML()=='ERROR'">
		<td align=right>
			<span tal:repeat="item python:here.getCopyrightsHTML()">
			    <span tal:condition="not:python:item[0] == 'empty'">
			    	<a tal:attributes="href python:item[0]" target="_blank">
			    	<span tal:content="structure python:item[4]"/>
			    	<span tal:condition="not:python:item[1]=='all'">
			    	(<span tal:content="python:item[1]"/>)</span>
					<span tal:content="python:here.getPartnerFromIDParameter(item[2])[0][1].title"/><br>
					</a>
				</span>
				<span tal:condition="python:item[0] == 'empty'">
			    	<span tal:content="structure python:item[4]"/>
			    	<span tal:condition="not:python:item[1]=='all'">
			    	(<span tal:content="python:item[1]"/>)</span>
					<span tal:content="python:here.getPartnerFromIDParameter(item[2])[0][1].title"/><br>
				</span>
				
			</span>
		</td>
	</tr>
	
	<!-- -->
	
	
	<tr tal:condition="python:here.getSubCols(subColTypes=['ECHO_externalLink'])">
		
		<td>
			<!-- Lists externalLinks if there are some -->
			<table border="0">
				<tr>
					<td width="10px">
					</td>
					<td>
						<h4>
							Futher Information: 
						</h4>
					</td>
				</tr>
				<tr>
					<td>
					</td>
					<td>
						<div tal:omit-tag="" tal:repeat="item python:here.getSubCols(subColTypes=['ECHO_externalLink'])">
							<div tal:replace="structure item/content_html" />
						</div>
					</td>
				</tr>
			</table>
			<!-- -->
		</td>
	</tr>
	
</table>

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