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

Last commit: Thu Feb 16 23:18:09 2023 +0100	Jan Dankert	Fix: Tags for 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 <group> 4 <fieldset label="${message:type}"> 5 <text value="${message:${type}}"/> 6 </fieldset> 7 <fieldset label="${message:filename}"> 8 <text value="${filename}"/> 9 </fieldset> 10 <fieldset label=""> 11 <part> 12 <link clickable="true" subaction="prop" class="btn" type="dialog"> 13 <text value="${message:edit}"/> 14 </link> 15 </part> 16 </fieldset> 17 </group> 18 19 <include file="../include/tags" /> 20 21 <list list="${languages}" extract="true"> 22 <group title="${languagename}"> 23 <fieldset label="${message:name}"> 24 <text value="${name}"/> 25 <text type="small" value="${description}"/> 26 </fieldset> 27 <fieldset label="${message:alias}"> 28 <text value="${alias}"/> 29 <part class="act-clickable"> 30 <link class="btn" type="edit" action="page" subaction="name" var1="languageid" 31 value1="${languageid}"> 32 <text value="${message:edit}"/> 33 </link> 34 </part> 35 </fieldset> 36 </group> 37 </list> 38 <group title="${message:filename}" open="true"> 39 <table filter="false"> 40 <row header="true"> 41 <column> 42 <text value="${message:language}" /> 43 </column> 44 <column> 45 <text value="${message:model}" /> 46 </column> 47 <column> 48 <text value="${message:filename}" /> 49 </column> 50 <column> 51 <text value="${message:file_mimetype}" /> 52 </column> 53 </row> 54 <list list="${filenames}" extract="true"> 55 <row class="data"> 56 <column> 57 <link type="open" id="${languageid}" action="language" clickable="true"> 58 <text value="${languagename}" /> 59 </link> 60 </column> 61 <column> 62 <link type="open" id="${modelid}" action="model" clickable="true"> 63 <text value="${modelname}" /> 64 </link> 65 </column> 66 <column> 67 <text value="${filename}" class="filename"/> 68 </column> 69 <column> 70 <text value=" ( ${mimetype} )" /> 71 </column> 72 </row> 73 </list> 74 75 </table> 76 </group> 77 78 <group title="${message:additional_info}" open="false"> 79 80 <fieldset label="${message:full_filename}"> 81 <text value="${tmp_filename}" class="filename"/> 82 </fieldset> 83 <fieldset label="${message:template}"> 84 <if present="templateid"> 85 <part class="act-clickable"> 86 <link action="template" id="${templateid}" type="open"> 87 <image action="template"/> 88 <text value="${template_name}"/> 89 </link> 90 </part> 91 </if> 92 <else> 93 <image action="template"/> 94 <text value="${template_name}"/> 95 </else> 96 </fieldset> 97 <fieldset label="${message:FILE_MIMETYPE}"> 98 <text value="${mime_type}" class="filename"/> 99 </fieldset> 100 <fieldset label="${message:id}"> 101 <text value="${objectid}"/> 102 </fieldset> 103 <fieldset label="${message:pageid}"> 104 <text value="${pageid}"/> 105 </fieldset> 106 </group> 107 108 <include file="../include/references"/> 109 <include file="../include/validity"/> 110 <include file="../include/timestamps"/> 111 <include file="../include/settings"/> 112 113 </output>
Download modules/cms/ui/themes/default/html/views/page/info.tpl.src.xml
History Thu, 16 Feb 2023 23:18:09 +0100 Jan Dankert Fix: Tags for pages. Thu, 16 Feb 2023 01:04:38 +0100 Jan Dankert New: Tags for base objects. Tue, 9 Mar 2021 09:17:27 +0100 Jan Dankert New: Show all links ('references') to the current object. Thu, 4 Mar 2021 02:24:45 +0100 Jan Dankert New: The calculation of the mime types should be done in the generators. Thu, 4 Mar 2021 02:00:11 +0100 Jan Dankert New: Show all page filenames in info. Sat, 27 Feb 2021 20:12:04 +0100 Jan Dankert Enhanced Docker-Image with a separate port for generated content Sun, 15 Nov 2020 00:26:57 +0100 Jan Dankert New: Aliases are now openable in the navigation tree. Sun, 15 Nov 2020 00:06:59 +0100 Jan Dankert Cleanup info view for pages. Sun, 15 Nov 2020 00:00:33 +0100 Jan Dankert Fix: Editing of names and descriptions for pages and other objects. 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, 5 Oct 2020 23:32:06 +0200 Jan Dankert UI: Nicer buttons Thu, 20 Aug 2020 21:15:48 +0200 Jan Dankert Cleanup: Deleting unused components. 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.