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

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/templates/user-admin.html

  • Committer: Matt Giuca
  • Date: 2010-07-28 06:09:00 UTC
  • Revision ID: matt.giuca@gmail.com-20100728060900-6a0lcuexcv1juh5r
ivle/webapp/submit/submit.html: Rewrote error message when an offering could not be found to submit to. This can have one of several causes, and the old error assumed it was because you weren't in a subject dir. Now enumerates the possible reasons. (LP: #526853)

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>Administer - ${context.nick}</title>
 
5
  </head>
 
6
  <body>
 
7
    <h1>Administer ${context.nick}</h1>
 
8
    <div id="ivle_padding">
 
9
      <form class="verticalform" action="" method="post">
 
10
        <div>
 
11
          <label for="field_login">Login:</label>
 
12
          <span id="field_login">${context.login}</span>
 
13
        </div>
 
14
        <div>
 
15
          <label for="field_unixid">UID:</label>
 
16
          <span id="field_unixid">${context.unixid}</span>
 
17
        </div>
 
18
        <div>
 
19
          <label for="field_disabled">Disabled:</label>
 
20
          <input py:if="context.state in (u'enabled', u'disabled')"
 
21
              py:attrs="{'disabled': 'disabled'} if disable_admin else {}"
 
22
              type="checkbox" name="disabled" id="field_disabled" />
 
23
          <span py:if="context.state not in (u'enabled', u'disabled')">
 
24
            Has not accepted agreement
 
25
          </span>
 
26
        </div>
 
27
        <div>
 
28
          <label for="field_admin">Administrator:</label>
 
29
          <input type="checkbox" name="admin" id="field_admin"
 
30
              py:attrs="{'disabled': 'disabled'} if disable_admin else {}" />
 
31
          <span py:if="'admin' in errors" class="form_error">${errors.admin}</span>
 
32
        </div>
 
33
        <div>
 
34
          <label for="field_fullname">Full name:</label>
 
35
          <input type="text" name="fullname" id="field_fullname" size="40" />
 
36
          <span py:if="'fullname' in errors" class="form_error">${errors.fullname}</span>
 
37
        </div>
 
38
        <div>
 
39
          <label for="field_studentid">Student ID:</label>
 
40
          <input type="text" name="studentid" id="field_studentid" size="40" />
 
41
          <span py:if="'studentid' in errors" class="form_error">${errors.studentid}</span>
 
42
        </div>
 
43
        <div class="submit form_error" py:if="defined('error_value')" py:content="error_value" />
 
44
        <div class="submit"><input type="submit" value="Save" /></div>
 
45
      </form>
 
46
    </div>
 
47
  </body>
 
48
</html>