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

« back to all changes in this revision

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

webapp.admin.projects: Added "Revision" column showing the revision submitted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
          <th>Name</th>
15
15
          <th>Submitted By</th>
16
16
          <th>Time Submitted</th>
17
 
          <th>Repository</th>
 
17
          <th>Repository Path</th>
 
18
          <th>Revision</th>
18
19
        </tr>
19
20
      <py:for each="submission in project.latest_submissions">
20
21
        <tr>
22
23
          <td>${submission.submitter.display_name}</td>
23
24
          <td>${submission.date_submitted}</td>
24
25
          <td>${submission.path}</td>
 
26
          <td>${submission.revision}</td>
25
27
        </tr>
26
28
      </py:for>
27
29
      </table>