Annotation of ECHO_content/zpt/ECHO_resource_template_standard.zpt, revision 1.4

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

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