~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/templates/users.html

  • Committer: mattgiuca
  • Date: 2008-01-11 00:49:06 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:172
util: Added buildurl function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html xmlns="http://www.w3.org/1999/xhtml"
2
 
      xmlns:py="http://genshi.edgewall.org/">
3
 
  <head>
4
 
    <title>Users</title>
5
 
  </head>
6
 
  <body>
7
 
    <h1>User list</h1>
8
 
    <div id="ivle_padding">
9
 
      <div class="majorsection" py:def="userlist(title, admin)"
10
 
           py:if="users.find(admin=admin).count()"
11
 
           py:with="these_users = users.find(admin=admin)">
12
 
        <h2>${title}</h2>
13
 
        <table class="pretty_table">
14
 
          <thead><tr><th>Login</th><th>Name</th></tr></thead>
15
 
          <tbody>
16
 
            <tr py:for="user in these_users">
17
 
              <td py:attrs="{'class': 'disabled_user'} if user.state == u'disabled' else {}">
18
 
                <a href="${req.publisher.generate(user)}">${user.login}</a>
19
 
              </td>
20
 
              <td>${user.display_name}</td>
21
 
            </tr>
22
 
          </tbody>
23
 
        </table>
24
 
      </div>
25
 
      ${userlist("Admins", True)}
26
 
      ${userlist("Users", False)}
27
 
      <div class="horizontalactions">
28
 
        <a class="addaction" href="/users/+new">Create new user</a>
29
 
      </div>
30
 
    </div>
31
 
  </body>
32
 
</html>