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

1165.3.2 by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to
1
<html xmlns="http://www.w3.org/1999/xhtml"
2
      xmlns:py="http://genshi.edgewall.org/">
3
  <head>
1165.3.20 by William Grant
Correct some OfferingProjectsView text.
4
    <title>Projects for ${offering.subject.name}</title>
1165.3.2 by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to
5
  </head>
6
  <body>
1165.3.20 by William Grant
Correct some OfferingProjectsView text.
7
    <h1>Projects for ${offering.subject.name}</h1>
1165.3.2 by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to
8
    <div id="ivle_padding">
9
      <ul id="projectset_list">
10
        <py:for each="projectset in projectsets">
11
          ${projectset}
12
        </py:for>
13
      </ul>
14
      <div id="add_projectset">
1165.3.20 by William Grant
Correct some OfferingProjectsView text.
15
        <a>Add a new project set</a>
1165.3.36 by William Grant
Swap around some elements to make the OfferingProjectsView XHTML more valid.
16
        <form id="new_projectset_form" method="PUT" name="new_projectset_form" action="/api/subjects/${offering.subject.short_name}/${offering.semester.year}/${offering.semester.semester}/+projectsets/+new">
17
          <div id="new_projectset_div">
1165.3.2 by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to
18
            <label for="group_size">Group Size:</label>
19
            <input type="text" name="group_size" id="group_size"></input>
1165.3.7 by Nick Chadwick
Modified the styling of the projects page, and added a non-functional
20
            <input type="submit" id="submit_new_projectset" name="Bob"
1165.3.20 by William Grant
Correct some OfferingProjectsView text.
21
                value="Create Project Set"/>
1165.3.36 by William Grant
Swap around some elements to make the OfferingProjectsView XHTML more valid.
22
          </div>
23
        </form>
1165.3.2 by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to
24
      </div>
25
    </div>
26
  </body>
27
</html>