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

Last commit: Sun Jan 5 23:14:07 2025 +0100	Jan Dankert	New UI feature: Show a timeline in the start page.
1 <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd"> 2 3 <group> 4 5 <if present="days"> 6 <table class="timeline-chart" filter="false"> 7 <row> 8 <list list="${days}" value="bar"> 9 <column> 10 <text escape="false" type="preformatted" value="${bar}" /> 11 </column> 12 </list> 13 </row> 14 </table> 15 </if> 16 17 <if present="timeline"> 18 <table filter="false"> 19 <list list="${timeline}" extract="true"> 20 <row> 21 <column> 22 <date date="${lastchange_date}" /> 23 </column> 24 <column> 25 <text value="${username}" /> 26 </column> 27 <column class="act-clickable"> 28 <link type="open" action="${action}" id="${id}"> 29 <text value="${message:${action}}" /> 30 </link> 31 </column> 32 </row> 33 </list> 34 </table> 35 36 </if> 37 38 </group> 39 40 <part class="linklist"> 41 <part class="act-clickable,linklist-line,round-corners,hover-effect"> 42 <link type="open" action="projectlist"> 43 <text value="${message:projects}"/> 44 </link> 45 </part> 46 <if true="${isAdmin}"> 47 <part class="act-clickable,linklist-line,round-corners,hover-effect"> 48 <link type="open" action="usergroup"> 49 <text value="${message:user_and_groups}"/> 50 </link> 51 </part> 52 </if> 53 <if true="${isAdmin}"> 54 <part class="act-clickable,linklist-line,round-corners,hover-effect"> 55 <link type="open" action="configuration"> 56 <text value="${message:prefs}"/> 57 </link> 58 </part> 59 </if> 60 </part> 61 </output>
Download modules/cms/ui/themes/default/html/views/index/edit.tpl.src.xml
History Sun, 5 Jan 2025 23:14:07 +0100 Jan Dankert New UI feature: Show a timeline in the start page. Thu, 18 Feb 2021 01:55:01 +0100 Jan Dankert New: Action for displaying a navigation while no other action is selected.