File modules/cms/ui/themes/default/html/views/profile/bookmark.tpl.src.xml
Last commit: Sun Dec 8 20:56:47 2024 +0100 Jan Dankert New: Users are now able to store bookmarks.
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:lastchange}"/> 12 </column> 13 </row> 14 <list list="${bookmarks}" extract="true"> 15 <row class="data"> 16 <column class="act-clickable"> 17 <link type="open" action="project" id="${projectid}"> 18 <text value="${projectname}"/> 19 </link> 20 </column> 21 <column title="${filename}" class="act-clickable"> 22 <link type="open" action="${type}" id="${objectid}"> 23 <text value="${filename}" maxlength="30"/> 24 </link> 25 </column> 26 <column> 27 <date date="${lastchange_date}"/> 28 </column> 29 </row> 30 </list> 31 </table> 32 </output>
Downloadmodules/cms/ui/themes/default/html/views/profile/bookmark.tpl.src.xml
History Sun, 8 Dec 2024 20:56:47 +0100 Jan Dankert New: Users are now able to store bookmarks.