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

1165.3.2 by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to
1
<li xmlns="http://www.w3.org/1999/xhtml"
2
    xmlns:py="http://genshi.edgewall.org/"
1710.1.12 by Matt Giuca
Projects page: Removed default invisible project sets, and JavaScript to show it. Now just visible.
3
    id='projectset_${projectset.id}'>
1165.3.30 by William Grant
Clean out the projectset fragment context.
4
  <py:choose test="projectset.max_students_per_group">
1165.3.21 by William Grant
Indicate the solo/groupness of a project.
5
    <h3 py:when="None">
6
      Solo projects
1710.1.9 by Matt Giuca
Projects page: Added Edit link to solo projects (previously only on group projects due to a bug).
7
      <a class="editaction" href="${req.publisher.generate(projectset, ProjectSetEdit)}">Edit</a>
1165.3.21 by William Grant
Indicate the solo/groupness of a project.
8
    </h3>
1358 by William Grant
Use the publishing framework to generate URLs to projectsets.
9
    <h3 py:otherwise="">
1165.3.24 by William Grant
Omit the group size limit text when there isn't one.
10
      Group projects
1358 by William Grant
Use the publishing framework to generate URLs to projectsets.
11
      <span py:if="projectset.max_students_per_group != 0"> - up to ${projectset.max_students_per_group} students per group</span>
1451 by William Grant
Add icons to the project management view.
12
      <a class="groupaction" href="${req.publisher.generate(projectset, GroupsView)}">Manage groups</a>
1710.1.5 by Matt Giuca
Added new project set edit view. Linked from projects page, project set page.
13
      <a class="editaction" href="${req.publisher.generate(projectset, ProjectSetEdit)}">Edit</a>
1165.3.21 by William Grant
Indicate the solo/groupness of a project.
14
    </h3>
15
  </py:choose>
1165.3.33 by William Grant
Merge the empty/non-empty project lists.
16
  <ul id="projectslist_${projectset.id}">
1165.3.36 by William Grant
Swap around some elements to make the OfferingProjectsView XHTML more valid.
17
    <li py:if="len(projects) == 0" class="list_empty_indicator">No projects.</li>
1165.3.33 by William Grant
Merge the empty/non-empty project lists.
18
    <py:for each="project in projects">
19
      ${project}
20
    </py:for>
1165.3.34 by William Grant
Put the 'Add a new project' link and form inside an <li>.
21
    <li class="add-project">
1710.1.11 by Matt Giuca
Project page: Replace AJAX project creation UI with link to ProjectNew view. Removed project creation UI including JSON API.
22
      <a href="${req.publisher.generate(projectset, ProjectNew)}"
23
         class="addaction">Add a new project</a>
1165.3.34 by William Grant
Put the 'Add a new project' link and form inside an <li>.
24
    </li>
1165.3.33 by William Grant
Merge the empty/non-empty project lists.
25
  </ul>
1165.3.2 by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to
26
</li>