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

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2009-12-16 06:18:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1450.
  • Revision ID: me@williamgrant.id.au-20091216061842-01s07lewp89fgbbm
Display either 'solo' or the list of other group members on the offering project listing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
          <ul py:otherwise="" class="paddedlist">
26
26
            <li py:for="project in context.projects">
27
 
              <a href="${project.url}">${project.name}</a> &ndash; <span title="Due ${format_datetime(project.deadline)}">due ${format_datetime_short(project.deadline)}</span><br />
 
27
              <a href="${project.url}">${project.name}</a> &ndash;
 
28
              <span py:content="format_submitters(req.user, project.project_set.get_submitters(req.user))" /> &ndash;
 
29
              <span title="${format_datetime(project.deadline)}">
 
30
                due ${format_datetime_short(project.deadline)}
 
31
              </span><br />
28
32
              ${project.synopsis}
29
33
            </li>
30
34
          </ul>