Changeset - 79f42866bcbb
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 15 years ago 2010-12-29 01:51:29
marcin@python-works.com
extended user editing view with permissions (still a todo)
1 file changed with 15 insertions and 6 deletions:
0 comments (0 inline, 0 general)
rhodecode/templates/admin/users/user_edit.html
Show inline comments
 
@@ -18,7 +18,7 @@
 
</%def>
 

	
 
<%def name="main()">
 
<div class="box">
 
<div class="box box-left">
 
    <!-- box / title -->
 
    <div class="title">
 
        ${self.breadcrumbs()}       
 
@@ -43,7 +43,7 @@
 
                    <label for="username">${_('Username')}:</label>
 
                </div>
 
                <div class="input">
 
                    ${h.text('username',class_='small')}
 
                    ${h.text('username',class_='medium')}
 
                </div>
 
             </div>
 
            
 
@@ -52,7 +52,7 @@
 
                    <label for="new_password">${_('New password')}:</label>
 
                </div>
 
                <div class="input">
 
                    ${h.password('new_password',class_='small')}
 
                    ${h.password('new_password',class_='medium')}
 
                </div>
 
             </div>
 
            
 
@@ -61,7 +61,7 @@
 
                    <label for="name">${_('First Name')}:</label>
 
                </div>
 
                <div class="input">
 
                    ${h.text('name',class_='small')}
 
                    ${h.text('name',class_='medium')}
 
                </div>
 
             </div>
 
            
 
@@ -70,7 +70,7 @@
 
                    <label for="lastname">${_('Last Name')}:</label>
 
                </div>
 
                <div class="input">
 
                    ${h.text('lastname',class_='small')}
 
                    ${h.text('lastname',class_='medium')}
 
                </div>
 
             </div>
 
            
 
@@ -79,7 +79,7 @@
 
                    <label for="email">${_('Email')}:</label>
 
                </div>
 
                <div class="input">
 
                    ${h.text('email',class_='small')}
 
                    ${h.text('email',class_='medium')}
 
                </div>
 
             </div>
 
            
 
@@ -108,4 +108,13 @@
 
    </div>
 
    ${h.end_form()}
 
</div>    
 
<div class="box box-right">
 
    <!-- box / title -->
 
    <div class="title">
 
        <h5>${_('Permissions')}</h5>       
 
    </div>
 
    <div class="table">
 
    Permissions settings goes here !
 
    </div>
 
</div>
 
</%def>  
 
\ No newline at end of file
0 comments (0 inline, 0 general)