~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-02-05 01:41:15 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:409
Moved www/conf and www/common to a new directory lib. This separates the "web"
part of IVLE from what is becoming less web oriented (at least from Apache's
standpoint).
Modified setup.py to install this lib directory correctly and write conf in
the right place. Also adds the lib directory to ivle.pth.

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" name="user" />
13
 
          <label for="role">Enrol as:</label>
14
 
          <select 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>