File modules/cms/ui/themes/default/html/views/include/timestamps.inc.xml

Last commit: Sun Nov 15 00:06:59 2020 +0100	Jan Dankert	Cleanup info view 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 title="${message:prop_userinfo}" open="false"> 4 <fieldset label="${message:created}"> 5 <part tag="span"> 6 <image action="el_date"/> 7 <date date="${create_date}"/> 8 </part> 9 <part tag="span"> 10 <image action="user"/> 11 <user user="${create_user}"/> 12 </part> 13 </fieldset> 14 15 <fieldset label="${message:lastchange}"> 16 <part tag="span"> 17 <image action="el_date"/> 18 <date date="${lastchange_date}"/> 19 </part> 20 <part tag="span"> 21 <image action="user"/> 22 <user user="${lastchange_user}"/> 23 </part> 24 </fieldset> 25 26 <fieldset label="${message:published}"> 27 <part tag="span"> 28 <image action="el_date"/> 29 <date date="${published_date}"/> 30 </part> 31 <part tag="span"> 32 <image action="user"/> 33 <user user="${published_user}"/> 34 </part> 35 </fieldset> 36 </group> 37 </output>
Download modules/cms/ui/themes/default/html/views/include/timestamps.inc.xml
History Sun, 15 Nov 2020 00:06:59 +0100 Jan Dankert Cleanup info view for pages. Wed, 21 Oct 2020 00:26:06 +0200 Jan Dankert Using fieldsets in all templates (replacing the old '') Mon, 17 Aug 2020 22:52:37 +0200 Jan Dankert Cleanup: Killing the old odd 'GLOBAL_' message prefixes. 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.