File modules/cms/ui/themes/default/html/views/templatelist/edit.tpl.src.xml

Last commit: Fri Mar 11 20:14:33 2022 +0100	dankert	UI-Cleanup.
1 <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd"> 3 <group title="${message:templates}"> 4 <table> 5 <row header="true"> 6 <column header="true"> 7 <text value="${message:name}"/> 8 </column> 9 <column header="true"/> 10 </row> 11 <list list="${templates}" extract="true"> 12 <row class="data"> 13 <column class="act-clickable"> 14 <image action="template"/> 15 <link type="open" id="${id}" name="${name}" action="template"> 16 <text value="${name}"/> 17 </link> 18 </column> 19 <column> 20 <part class="button,button--active-on-hover,toolbar-icon,row--on-hover"> 21 <image class="menu-icon" menu="more"/> 22 <part class="dropdown,button-value"> 23 <part 24 class="dropdown-entry,act-clickable"> 25 <link type="open" id="${id}" title="${message:menu_open}" action="template"> 26 <image method="switch"/> 27 <text class="dropdown-text" value="${message:menu_open}"/> 28 </link> 29 </part> 30 <part 31 class="dropdown-entry,act-clickable"> 32 <link type="dialog" id="${id}" title="${message:menu_prop_desc}" action="template" subaction="prop"> 33 <image method="prop"/> 34 <text class="dropdown-text" value="${message:menu_prop}"/> 35 </link> 36 </part> 37 <part 38 class="dropdown-entry,act-clickable"> 39 <link type="dialog" id="${id}" title="${message:menu_preview_desc}" action="template" subaction="preview"> 40 <image method="preview"/> 41 <text class="dropdown-text" value="${message:menu_preview}"/> 42 </link> 43 </part> 44 </part> 45 </part> 46 47 </column> 48 </row> 49 </list> 50 <if empty="${templates}"> 51 <row> 52 <column> 53 <text value="${message:NO_TEMPLATES_AVAILABLE_DESC}"/> 54 </column> 55 <column /> 56 </row> 57 </if> 58 </table> 59 60 <part class="button-knob,act-clickable"> 61 <link type="dialog" subaction="add"> 62 <image method="add"/> 63 <text value="${message:add}"/> 64 </link> 65 </part> 66 </group> 67 </output>
Download modules/cms/ui/themes/default/html/views/templatelist/edit.tpl.src.xml
History Fri, 11 Mar 2022 20:14:33 +0100 dankert UI-Cleanup. Mon, 8 Mar 2021 15:04:16 +0100 Jan Dankert UI Fixes: Table filter should not hide the table header; open actual object in navigation tree; load dialog name from link text. Mon, 8 Mar 2021 01:24:06 +0100 Jan Dankert New: Action menu on many lists; tables have now a fixed layout Sat, 20 Feb 2021 01:34:41 +0100 Jan Dankert New: Publish-switch for templates. Thu, 19 Nov 2020 12:36:44 +0100 Jan Dankert Fix: nextSubAction() is depracated and should not be used.