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

« back to all changes in this revision

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

Correct some OfferingProjectsView text.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<html xmlns="http://www.w3.org/1999/xhtml"
2
2
      xmlns:py="http://genshi.edgewall.org/">
3
3
  <head>
4
 
    <title>Projects - ${offering.subject.name}</title>
 
4
    <title>Projects for ${offering.subject.name}</title>
5
5
  </head>
6
6
  <body>
7
7
    <py:def function="project_url(offering, project)">/subjects/${offering.subject.short_name}/${offering.semester.year}/${offering.semester.semester}/+project/${project.short_name}</py:def>
8
 
    <h1>${offering.subject.name} - Projects</h1>
 
8
    <h1>Projects for ${offering.subject.name}</h1>
9
9
    <div id="ivle_padding">
10
10
      <ul id="projectset_list">
11
11
        <py:for each="projectset in projectsets">
13
13
        </py:for>
14
14
      </ul>
15
15
      <div id="add_projectset">
16
 
        <a>Add a new projectset</a>
 
16
        <a>Add a new project set</a>
17
17
        <div id="new_projectset_div">
18
18
          <form id="new_projectset_form" method="PUT" name="new_projectset_form" action="/api/subjects/${subject}/${year}/${semester}/+projectsets/+new">
19
19
            <label for="group_size">Group Size:</label>
20
20
            <input type="text" name="group_size" id="group_size"></input>
21
21
            <input type="submit" id="submit_new_projectset" name="Bob"
22
 
                value="Create ProjectSet"/>
 
22
                value="Create Project Set"/>
23
23
          </form>
24
24
        </div>
25
25
      </div>