File modules/cms/ui/themes/default/html/views/project/history.tpl.src.xml

Last commit: Mon Mar 8 15:04:16 2021 +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.
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 <table> 3 <row header="true"> 4 <column> 5 <text value="${message:name}"/> 6 </column> 7 <column> 8 <text value="${message:filename}"/> 9 </column> 10 <column> 11 <text value="${message:user_username}"/> 12 </column> 13 <column> 14 <text value="${message:lastchange}"/> 15 </column> 16 </row> 17 <list list="${timeline}" extract="true"> 18 <!-- Den Typ des Objektes ermitteln --> 19 <if value="${typeid}" equals="1"> 20 <set var="type" value="'folder'"/> 21 </if> 22 <if value="${typeid}" equals="2"> 23 <set var="type" value="'file'"/> 24 </if> 25 <if value="${typeid}" equals="3"> 26 <set var="type" value="'page'"/> 27 </if> 28 <if value="${typeid}" equals="4"> 29 <set var="type" value="'link'"/> 30 </if> 31 <if value="${typeid}" equals="5"> 32 <set var="type" value="'url'"/> 33 </if> 34 <row class="data"> 35 <column class="act-clickable"> 36 <link type="open" name="${name}" id="${objectid}" action="${type}"> 37 <text value="${name}" maxlength="30"/> 38 </link> 39 </column> 40 <column> 41 <text value="${filename}" maxlength="30"/> 42 </column> 43 <column> 44 <text value="${username}"/> 45 </column> 46 <column> 47 <date date="${lastchange_date}"/> 48 </column> 49 </row> 50 </list> 51 </table> 52 </output>
Download modules/cms/ui/themes/default/html/views/project/history.tpl.src.xml
History 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. Tue, 17 Nov 2020 23:51:00 +0100 Jan Dankert Refactoring: Every Actionmethod has now its own class. Mon, 26 Oct 2020 21:36:14 +0100 Jan Dankert Rename css class 'clickable' to 'act-clickable'; enhanced view 'info' for projects. Wed, 21 Oct 2020 00:26:06 +0200 Jan Dankert Using fieldsets in all templates (replacing the old '') Sat, 16 May 2020 01:08:40 +0200 Jan Dankert Refactoring: Switching the ValueExpressions in the templates to the new VariableResolver for supporting nested variables like ${message:prefix_${key}}. Sun, 23 Feb 2020 23:21:22 +0100 Jan Dankert Fix: Path to template.xsd has changed on the last refactoring. Sun, 23 Feb 2020 04:01:30 +0100 Jan Dankert Refactoring with Namespaces for the cms modules, part 1: moving.