Files
@ a0a93357f954
Branch filter:
Location: kallithea/pylons_app/templates/admin/users/user_edit_my_account.html - annotation
a0a93357f954
3.1 KiB
text/html
started my page rewrite
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 0659a891d975 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 a0a93357f954 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 5cd6616b8673 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 a0a93357f954 5cd6616b8673 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${c.hg_app_user.username} ${_('account')}
</%def>
<%def name="breadcrumbs_links()">
${_('My Account')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box box-left">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
${h.form(url('admin_settings_my_account_update'),method='put')}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="username">${_('Username')}:</label>
</div>
<div class="input">
${h.text('username')}
</div>
</div>
<div class="field">
<div class="label">
<label for="new_password">${_('New password')}:</label>
</div>
<div class="input">
${h.password('new_password')}
</div>
</div>
<div class="field">
<div class="label">
<label for="name">${_('Name')}:</label>
</div>
<div class="input">
${h.text('name')}
</div>
</div>
<div class="field">
<div class="label">
<label for="lastname">${_('Lastname')}:</label>
</div>
<div class="input">
${h.text('lastname')}
</div>
</div>
<div class="field">
<div class="label">
<label for="email">${_('Email')}:</label>
</div>
<div class="input">
${h.text('email')}
</div>
</div>
<div class="buttons">
${h.submit('save','save',class_="ui-button ui-widget ui-state-default ui-corner-all")}
</div>
</div>
</div>
${h.end_form()}
</div>
<div class="box box-right">
<!-- box / title -->
<div class="title">
<h5>${_('My repositories')}</h5>
</div>
<!-- end box / title -->
<div class="table">
<table>
<tbody>
%for repo in c.user_repos:
<tr>
<td>
%if repo.dbrepo.private:
<img alt="${_('private')}" src="/images/icons/lock.png"/>
%else:
<img alt="${_('public')}" src="/images/icons/lock_open.png"/>
%endif
${h.link_to(repo.name, h.url('summary_home',repo_name=repo.name))}</td>
##<td>${_('created')} ${repo.dbrepo.}</td>
<td>${_('last changed')} ${h.age(repo.last_change)}</td>
<td>${h.link_to(_('[edit]'),h.url('edit_repo',repo_name=repo.name))}</td>
</tr>
%endfor
</tbody>
</table>
</div>
</div>
</%def>
|