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

Last commit: Thu Feb 16 22:57:35 2023 +0100	Jan Dankert	New: More functions (adding, deleting) for tags.
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 <table> 4 <row header="true"> 5 <column header="true" class="table-column-action"> 6 <text value="${message:TYPE}"/> 7 </column> 8 <column header="true" class="table-column-auto"> 9 <text value="${message:NAME}"/> 10 </column> 11 <column header="true" class="-visible-on-desktop,table-column-date"> 12 <text value="${message:LASTCHANGE}"/> 13 </column> 14 <column header="true" class="table-column-action"> 15 </column> 16 </row> 17 <list list="${objects}" extract="true"> 18 <row class="data"> 19 <column class=""> 20 <image action="${type}"/> 21 </column> 22 <column class="act-clickable"> 23 <link type="open" id="${id}" name="${name}" action="${type}" title="${desc}"> 24 <text value="${name}"/> 25 </link> 26 </column> 27 <column class="-visible-on-desktop"> 28 <date date="${lastchange_date}"/> 29 </column> 30 <column> 31 <part class="button,button--active-on-hover,toolbar-icon,row--on-hover"> 32 <image class="menu-icon" menu="more"/> 33 <part class="dropdown,button-value"> 34 <part 35 class="dropdown-entry,act-clickable"> 36 <link type="open" id="${id}" title="${message:menu_open}" action="${type}"> 37 <image method="switch"/> 38 <text class="dropdown-text" value="${message:menu_open}"/> 39 </link> 40 </part> 41 <part 42 class="dropdown-entry,act-clickable"> 43 <link type="dialog" id="${id}" title="${message:menu_info_desc}" action="${type}" 44 subaction="info"> 45 <image method="info"/> 46 <text class="dropdown-text" value="${message:menu_info}"/> 47 </link> 48 </part> 49 <part 50 class="dropdown-entry,act-clickable"> 51 <link type="dialog" id="${id}" title="${message:menu_prop_desc}" action="${type}" 52 subaction="prop"> 53 <image method="prop"/> 54 <text class="dropdown-text" value="${message:menu_prop}"/> 55 </link> 56 </part> 57 <part 58 class="dropdown-entry,act-clickable"> 59 <link type="dialog" id="${id}" title="${message:menu_preview_desc}" action="${type}" 60 subaction="preview"> 61 <image method="preview"/> 62 <text class="dropdown-text" value="${message:menu_preview}"/> 63 </link> 64 </part> 65 <part 66 class="dropdown-entry,act-clickable"> 67 <link type="dialog" id="${id}" title="${message:menu_pub_desc}" action="${type}" 68 subaction="pub"> 69 <image method="pub"/> 70 <text class="dropdown-text" value="${message:menu_pub}"/> 71 </link> 72 </part> 73 </part> 74 </part> 75 76 </column> 77 </row> 78 </list> 79 <if empty="${objects}"> 80 <row> 81 <column colspan="3"> 82 <text value="${message:NOT_FOUND}"/> 83 </column> 84 </row> 85 </if> 86 </table> 87 88 <if value="${add}"> 89 <part class="act-clickable,button-knob"> 90 <link type="dialog" action="folder" subaction="add"> 91 <image method="new"/> 92 <text value="${message:add}"/> 93 </link> 94 </part> 95 </if> 96 </output>
Download modules/cms/ui/themes/default/html/views/tag/edit.tpl.src.xml
History Thu, 16 Feb 2023 22:57:35 +0100 Jan Dankert New: More functions (adding, deleting) for tags.