File modules/cms/ui/themes/default/html/views/projectlist/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:project}"/> 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 <row class="data"> 19 <column class="act-clickable"> 20 <link type="open" action="project" id="${projectid}"> 21 <text value="${projectname}"/> 22 </link> 23 </column> 24 <column> 25 <text value="${filename}" maxlength="30"/> 26 </column> 27 <column> 28 <text value="${username}"/> 29 </column> 30 <column> 31 <date date="${lastchange_date}"/> 32 </column> 33 </row> 34 </list> 35 </table> 36 </output>
Download modules/cms/ui/themes/default/html/views/projectlist/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. Sat, 6 Mar 2021 03:42:38 +0100 Jan Dankert New: Better permission checks. 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.