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

« back to all changes in this revision

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

Cache worksheet and exercise rST-generated XHTML in the DB, accelerating rendering by up to 2000%.

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>${context.subject.name} (${context.semester.year} ${context.semester.display_name})</title>
 
4
    <title>${context.subject.name} (${context.semester.year} semester ${context.semester.semester})</title>
5
5
  </head>
6
6
  <body>
7
7
    <h1>${context.subject.name}</h1>
38
38
          </p>
39
39
          <py:otherwise>
40
40
            <ul class="paddedlist">
41
 
              <li py:for="project in context.projects.order_by(Project.deadline)"
 
41
              <li py:for="project in context.projects"
42
42
                  py:attrs="{'class': 'project closed'}
43
43
                            if project.has_deadline_passed(req.user)
44
44
                            else {'class': 'project'}"
125
125
                <span style="font-weight: bold;">Mark:</span> ${worksheet_mark}/${worksheet_max_mark}
126
126
              </p>
127
127
            </py:if>
128
 
            <span py:if="context.worksheet_cutoff is not None"
129
 
              title="${'Closed' if context.has_worksheet_cutoff_passed(req.user) else 'Due'}: ${format_datetime(context.worksheet_cutoff)}">
130
 
              Worksheet submissions ${'closed' if context.has_worksheet_cutoff_passed(req.user) else 'are due'} ${format_datetime_short(context.worksheet_cutoff)}.
131
 
              <br />
132
 
              <py:choose test="context.has_worksheet_cutoff_passed(req.user)">
133
 
              <py:when test="True">You can still submit, but it will not count towards your mark.</py:when>
134
 
              <py:when test="False">After this time, you can still submit, but it will not count towards your mark.</py:when>
135
 
              </py:choose>
136
 
            </span>
137
128
            <div class="horizontalactions" py:if="'edit_worksheets' in permissions">
138
129
              <a class="manageaction" href="${req.publisher.generate(context, None, ('+worksheets', '+edit'))}"> Manage worksheets</a>
139
130
              <a class="manageaction" href="/+exercises">Manage exercises</a>