File modules/cms/ui/themes/default/html/views/folder/advanced.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" 2 xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd"> 3 <form action="folder" subaction="edit"> 4 <table> 5 <row header="true"> 6 <column class="help"> 7 <!-- 8 <text value="${message:SELECT}"></text> 9 --> 10 <text value="${message:TYPE}"/> 11 <!-- <checkbox name="checkall" /> --> 12 </column> 13 <column class="help"> 14 <!-- <text value=" / "/> --> 15 <text value="${message:NAME}"/> 16 </column> 17 </row> 18 <list list="${object}" extract="true"> 19 <row class="data"> 20 <column> 21 <image action="${icon}"/> 22 </column> 23 <column> 24 <if true="${writable}"> 25 <checkbox name="${id}" label="${name}"/> 26 </if> 27 <else> 28 <text value="${name}"/> 29 </else> 30 </column> 31 </row> 32 </list> 33 <if empty="${object}"> 34 <row> 35 <column colspan="2"> 36 <text value="${message:NOT_FOUND}"/> 37 </column> 38 </row> 39 </if> 40 </table> 41 <group title="${message:options}"> 42 <set var="type" value="${defaulttype}"/> 43 <list list="${actionlist}" value="actiontype"> 44 <fieldset label=""> 45 <radio name="type" value="${actiontype}" label="${message:FOLDER_SELECT_${actiontype}}"/> 46 </fieldset> 47 </list> 48 <fieldset label=""> 49 <checkbox name="confirm" label="${message:CONFIRM_DELETE}"/> 50 </fieldset> 51 <fieldset label="${message:FOLDER_SELECT_TARGET_FOLDER}"> 52 <selector types="folder" param="targetobjectid" name="${rootfoldername}" id="${rootfolderid}" 53 folderid="${rootfolderid}"/> 54 </fieldset> 55 </group> 56 </form> 57 </output>
Download modules/cms/ui/themes/default/html/views/folder/advanced.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. Wed, 11 Nov 2020 20:52:26 +0100 Jan Dankert Fix: Advanced view for folder was broken. 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, 10 Oct 2020 01:29:41 +0200 Jan Dankert Refactoring: Only using CSS classes with the 'or-'-prefix. Mon, 17 Aug 2020 22:52:37 +0200 Jan Dankert Cleanup: Killing the old odd 'GLOBAL_' message prefixes. Mon, 17 Aug 2020 22:22:54 +0200 Jan Dankert Cleanup: Templates with text component should only use 'value'. 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.