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

« back to all changes in this revision

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

  • Committer: mattgiuca
  • Date: 2008-07-15 07:19:34 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:875
Added "migrations" directory, which contains incremental database update
    scripts.
Updated users.sql, uniqueness key on offering table.
Added migration matching this update to the migrations directory. Mm handy!

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>Enrol a user - ${offering.subject.name}</title>
5
 
  </head>
6
 
  <body>
7
 
    <h1>Enrol a user in ${offering.subject.name}</h1>
8
 
    <div id="ivle_padding">
9
 
      <form action="" method="post">
10
 
        <p>
11
 
          <label for="user">Username:</label>
12
 
          <input type="text" id="user" name="user" />
13
 
          <label for="role">Enrol as:</label>
14
 
          <select id="role" name="role">
15
 
            <option py:if="'enrol_student' in roles_auth" value="student" selected="selected">Student</option>
16
 
            <option py:if="'enrol_tutor' in roles_auth" value="tutor">Tutor</option>
17
 
            <option py:if="'enrol_lecturer' in roles_auth" value="lecturer">Lecturer</option>
18
 
          </select>
19
 
          <span py:if="'user' in errors" class="form_error">${errors.user}.</span>
20
 
          <span py:if="'role' in errors" class="form_error">${errors.role}.</span>
21
 
          <br />
22
 
          <input type="submit" value="Enrol" />
23
 
        </p>
24
 
      </form>
25
 
    </div>
26
 
  </body>
27
 
</html>