source: asadb/template/groups/groupstartup_list.html

space-accessstablestagetest-hooks
Last change on this file was 2919697, checked in by Alex Dehnert <adehnert@…>, 14 years ago

More work on group recognition forms

  • Property mode set to 100644
File size: 703 bytes
Line 
1{% extends "base.html" %}
2
3{% block title %}Startup requests{% endblock %}
4{% block content %}
5
6<h1>Startup requests</h1>
7
8<table class='pretty-table'>
9<thead>
10    <tr>
11        <th>ID</th>
12        <th>Name</th>
13        <th>Review</th>
14        <th>Description</th>
15        <th>President</th>
16    </tr>
17</thead>
18<tbody>
19{% for startup in groupstartup_list %}
20    <tr>
21        <th>{{startup.pk}}</th>
22        <td>{{startup.group.name}}</td>
23        <td><a href='{% url groups:startup-recognize startup.pk %}'>Review</a></td>
24        <td>{{startup.group.description}}</td>
25        <td>{{startup.president_name}} ({{startup.president_kerberos}})</td>
26    </tr>
27{% endfor %}
28</tbody>
29</table>
30
31{% endblock %}
Note: See TracBrowser for help on using the repository browser.