File modules/cms/ui/themes/default/html/views/template/info.tpl.src.xml

Last commit: Tue Mar 9 08:27:30 2021 +0100	Jan Dankert	UI-Fix: Link to pages
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 4 <group title="${message:menu_info}"> 5 6 <table filter="false"> 7 <row class="table-data"> 8 <column colspan="1"> 9 <text value="${message:id}"/> 10 </column> 11 <column> 12 <text value="${id}"/> 13 </column> 14 </row> 15 <row class="table-data"> 16 <column> 17 <text value="${message:name}"/> 18 </column> 19 <column> 20 <text value="${name}"/> 21 </column> 22 </row> 23 24 </table> 25 </group> 26 27 <group title="${message:pages}"> 28 <table filter="true"> 29 <row header="true"> 30 <column header="true"> 31 <text value="${message:name}" /> 32 </column> 33 </row> 34 <list list="${pages}" value="name" key="pageid"> 35 <row class="data"> 36 <column class="act-clickable"> 37 <link type="open" action="page" id="${pageid}"> 38 <image action="page"/> 39 <text value="${name}"/> 40 </link> 41 </column> 42 </row> 43 </list> 44 </table> 45 </group> 46 </output>
Download modules/cms/ui/themes/default/html/views/template/info.tpl.src.xml
History Tue, 9 Mar 2021 08:27:30 +0100 Jan Dankert UI-Fix: Link to pages Sat, 20 Feb 2021 00:49:37 +0100 Jan Dankert Cleanup of templates. Wed, 11 Nov 2020 23:24:28 +0100 Jan Dankert Fixing editing value of files,images,texts. 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.