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

Last commit: Thu Mar 4 00:56:19 2021 +0100	Jan Dankert	Removed menu entry for 'password'
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 cancel="false" readonly="true"> 4 5 <text value="${fullname}" class="headline" /> 6 <!-- 7 <if not="true" empty="${image}"> 8 <fieldset label=""> 9 <part class="value"> 10 <image url="${image}" size="80x80"/> 11 </part> 12 </fieldset> 13 </if> 14 --> 15 16 <fieldset label="${message:user_username}"> 17 <text value="${name}" class="name"/> 18 </fieldset> 19 <group title="${message:ADDITIONAL_INFO}"> 20 <fieldset label="${message:user_fullname}"> 21 <text value="${fullname}"/> 22 </fieldset> 23 <if true="${config:security/user/show_admin_mail}"> 24 <fieldset label="${message:user_mail}"> 25 <part tag="span"> 26 <link url="mailto:${mail}" type="external"> 27 <text value="${mail}"/> 28 </link> 29 <qrcode value="mailto:${mail}"/> 30 </part> 31 32 </fieldset> 33 </if> 34 <fieldset label="${message:description}"> 35 <text value="${desc}"/> 36 </fieldset> 37 <fieldset label="${message:user_tel}"> 38 <part tag="span"> 39 <text value="${tel}"/> 40 <qrcode value="tel:${tel}"/> 41 </part>> 42 </fieldset> 43 <fieldset label="${message:timezone}"> 44 <text value="${timezone}"/> 45 </fieldset> 46 <fieldset label="${message:language}"> 47 <text value="${language}"/> 48 </fieldset> 49 <fieldset label=""> 50 <part> 51 <link clickable="true" type="dialog" subaction="prop" action="user" id="${userid}" class="btn"> 52 <text value="${message:edit}"/> 53 </link> 54 </part> 55 </fieldset> 56 57 <fieldset label="${message:groups}"> 58 <list list="${groups}" value="name"> 59 <text value="${name}" /> 60 <newline /> 61 </list> 62 </fieldset> 63 </group> 64 <group title="${message:options}" open="false"> 65 <fieldset label=""> 66 <checkbox name="is_admin" readonly="true" label="${message:user_admin}"/> 67 </fieldset> 68 <fieldset label="${message:user_style}"> 69 <text value="${style}"/> 70 </fieldset> 71 </group> 72 <group title="${message:security}" open="false"> 73 <fieldset label="${message:user_password_expires}"> 74 <date date="${passwordExpires}"/> 75 </fieldset> 76 <fieldset label=""> 77 <part> 78 <link clickable="true" type="dialog" subaction="pw" action="user" id="${userid}" class="btn"> 79 <text value="${message:edit_password}"/> 80 </link> 81 </part> 82 </fieldset> 83 84 <fieldset label="${message:user_last_login}"> 85 <date date="${lastLogin}"/> 86 </fieldset> 87 88 <!-- TOTP Settings --> 89 <fieldset label="${message:token}"> 90 <text value="${totpToken}"/> 91 </fieldset> 92 <fieldset label="${message:user_totp}"> 93 <checkbox name="totp" label="${message:user_totp}"/> 94 <qrcode value="${totpSecretUrl}"/> 95 </fieldset> 96 </group> 97 </form> 98 </output>
Download modules/cms/ui/themes/default/html/views/user/info.tpl.src.xml
History Thu, 4 Mar 2021 00:56:19 +0100 Jan Dankert Removed menu entry for 'password' Mon, 4 Jan 2021 23:14:09 +0100 Jan Dankert New: Groups may contain subgroups. Users within a group inherit the permissions of all parent groups. Tue, 1 Dec 2020 00:07:39 +0100 Jan Dankert New: Visibility-Button for password fields, fix: QR-code button for mobile devices. Mon, 26 Oct 2020 23:09:24 +0100 Jan Dankert Cleanup UI for adding templates and adding projects. Mon, 26 Oct 2020 21:36:14 +0100 Jan Dankert Rename css class 'clickable' to 'act-clickable'; enhanced view 'info' for projects. Sun, 25 Oct 2020 02:11:58 +0200 Jan Dankert Fix: The config was not read in the templates :-O. 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 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.