- Timestamp:
- 18 Jul 2006, 08:40:52 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_academics/academics_content_lib_info_detail_tab.pt
r326 r330 6 6 tal:define="title_in_tabs python: 'title' in detail_tab_columns; 7 7 long_title_in_tabs python:'long_title' in detail_tab_columns; 8 id_in_tabs python:'id' in detail_tab_columns; 9 typetext_in_tabs python:'typetext' in detail_tab_columns; 8 10 type_in_tabs python:'type' in detail_tab_columns; 9 11 size_in_tabs python:'size' in detail_tab_columns; … … 17 19 <tal:block condition="start"> 18 20 <tal:block replace='structure string:<table class="contentListing" width="100%" summary="content layout" id="folder_content">' /> 21 22 19 23 <thead> 20 24 <tr> … … 35 39 tal:attributes="href python:'%s/changeDisplayParams?display_order=%s' % (context_url, test(sort_title and direction=='asc','title_desc','title_asc'))" 36 40 i18n:translate="label_info_tab_title"></a></strong></th> 41 42 <th tal:condition="id_in_tabs" align="center"> 43 <strong tal:define="sort_id python:sort_by=='id'" 44 tal:omit-tag="not:sort_id"><a href="" 45 tal:attributes="href python:'%s/changeDisplayParams?display_order=%s' % (context_url, test(sort_id and direction=='asc','id_desc','id_asc'))" 46 i18n:translate="label_info_tab_id"></a></strong></th> 47 48 <th tal:condition="typetext_in_tabs" align="center"> 49 <strong tal:define="sort_typetext python:sort_by=='typetext'" 50 tal:omit-tag="not:sort_typetext"><a href="" 51 tal:attributes="href python:'%s/changeDisplayParams?display_order=%s' % (context_url, test(sort_typetext and direction=='asc','typetext_desc','typetext_asc'))" 52 i18n:translate="label_info_tab_typetext"></a></strong></th> 53 54 37 55 <th tal:condition="size_in_tabs" align="center"> 38 56 <strong tal:define="sort_size python:sort_by=='size'" … … 63 81 </tr> 64 82 </thead> 83 84 85 86 87 88 89 65 90 <tal:block replace='structure string:<tbody id="folder_content_tbody">' /> 66 91 </tal:block> … … 93 118 title info/description;"> 94 119 <strong tal:content="info/title_or_id">ID</strong></a></td> 120 95 121 <td tal:condition="long_title_in_tabs"> 96 122 <a href="" tal:attributes="href string:${info/url}${action}; 97 123 title info/description;"> 98 124 <strong tal:content="info/long_title|info/title_or_id">ID</strong></a></td> 125 126 127 <td tal:condition="id_in_tabs"> 128 <span tal:content="info/id">ID</span> 129 </td> 130 131 <td tal:condition="typetext_in_tabs"> 132 <span tal:content="info/type">ID</span> 133 </td> 134 135 99 136 <td align="right" tal:condition="display_buttons"> 100 137 <a href="dummy" tal:attributes="href string:${item/absolute_url}/academics_edit_form">[edit]</a></td> -
WAeUP_SRP/trunk/skins/waeup_custom/getCustomDisplayParams.py
r296 r330 8 8 ##title= 9 9 ## 10 # $Id: getCustomDisplayParams.py 32717 2006-02-10 13:35:19Z mturcu $ 10 11 # $Id: getCustomDisplayParams.py 32717 2006-02-10 13:35:19Z mturcu $ 11 12 """ … … 30 31 'nav_action': 'folder_view', 31 32 'filter': 0, 32 'detail_tab_columns': ['long_title', 33 #'type', 33 'detail_tab_columns': ['long_title', 34 'id', 35 'typetext', 34 36 #'size', 35 37 #'date', … … 41 43 42 44 return custom_params 45 -
WAeUP_SRP/trunk/skins/waeup_default/temporary_view_all_form.pt
r288 r330 20 20 21 21 <p>This is a temporary view of the object with id <em tal:content="here/id" /> 22 of type <em tal:content="here/portal_type" /> 23 which can be customized according to the customer's needs.</p> 22 of type <em tal:content="here/portal_type" />.</p> 24 23 25 24 <br /> 26 25 <span tal:condition="python:context.portal_type != 'University' and doc.render()" tal:omit-tag=""> 27 <p>object's workflowstate: <span tal:replace="python: context.portal_workflow.getInfoFor(context,'review_state',None)"/></p> 28 <p>Exemplary view of the <strong>object's data fields</strong>: </p> 29 <tal:block 30 tal:content="structure python:doc.render()" /> 26 <tal:block tal:content="structure python:doc.render()" /> 31 27 </span> 32 28 <br /> -
WAeUP_SRP/trunk/skins/waeup_default/unchecked.pt
r320 r330 31 31 title item/Title; 32 32 "> 33 <td i18n:translate="">34 <span tal:replace="item/id" />35 </td>36 33 <td> 37 34 <a href="url" … … 40 37 </a> 41 38 </td> 39 40 <td i18n:translate=""> 41 <span tal:replace="item/id" /> 42 </td> 42 43 43 44 <td> 44 <span tal:replace="item/ Type" />45 <span tal:replace="item/portal_type" /> 45 46 </td> 46 47 </tr>
Note: See TracChangeset for help on using the changeset viewer.