Annotation of ECHO_content/zpt/ECHO_collection_template_standard.zpt, revision 1.6

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

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