73 lines
1.6 KiB
XML
73 lines
1.6 KiB
XML
<vn>
|
|
<vn-group>
|
|
<db-form id="user-form">
|
|
<db-model property="model" id="user-model" updatable="true">
|
|
SELECT u.id, u.name, u.email, u.nickname,
|
|
u.lang, c.isToBeMailed, c.id clientFk
|
|
FROM account.myUser u
|
|
LEFT JOIN myClient c
|
|
ON u.id = c.id
|
|
</db-model>
|
|
</db-form>
|
|
</vn-group>
|
|
<div id="title">
|
|
<h1><t>Configuration</t></h1>
|
|
</div>
|
|
<div id="actions">
|
|
<htk-bar-button
|
|
icon="place"
|
|
tip="_Addresses"
|
|
on-click="hash.setAll({form: 'account/address-list'})"/>
|
|
<htk-bar-button
|
|
icon="lock_reset"
|
|
tip="_Change password"
|
|
on-click="this.$.changePassword.open()"/>
|
|
</div>
|
|
<div id="form" class="conf">
|
|
<div class="form box vn-w-sm vn-pa-lg">
|
|
<h5 class="vn-mb-md">
|
|
<t>Personal information</t>
|
|
</h5>
|
|
<div class="form-group">
|
|
<htk-entry
|
|
placeholder="_Username"
|
|
disabled="true"
|
|
form="user-form"
|
|
column="name"/>
|
|
</div>
|
|
<div class="form-group">
|
|
<htk-entry
|
|
placeholder="_Email"
|
|
form="user-form"
|
|
column="email">
|
|
</htk-entry>
|
|
</div>
|
|
<div class="form-group">
|
|
<htk-entry
|
|
placeholder="_Display name"
|
|
form="user-form"
|
|
column="nickname"/>
|
|
</div>
|
|
<div class="form-group">
|
|
<htk-combo
|
|
placeholder="_Language"
|
|
form="user-form"
|
|
column="lang">
|
|
<db-model property="model">
|
|
<custom>
|
|
SELECT code, name FROM language WHERE isActive
|
|
</custom>
|
|
</db-model>
|
|
</htk-combo>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>
|
|
<htk-check form="user-form" column="isToBeMailed"/>
|
|
<t>Receive invoices by email</t>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<htk-change-password id="change-password"/>
|
|
</vn>
|