source: asadb/template/membership/submitted.html

space-accessstablestage
Last change on this file was cf43bea, checked in by Alex Dehnert <adehnert@…>, 13 years ago

Remove disclaimer about submission numbers

Since 4260e2c075a85117ba6fadae1b41fc3a3505c4c5, we've included people only once
and only if they're actually a student. While we still don't check that people
didn't just select all the groups, that isn't a real risk. Thus, remove the
disclaimer saying that the membership submission numbers might be wrong and
suggesting that people email asa-db@.

  • Property mode set to 100644
File size: 737 bytes
Line 
1{% extends "base.html" %}
2
3{% block title %}Membership Information Submissions Received{% endblock %}
4{% block content %}
5
6<h2>Membership Information Submissions Received</h2>
7
8<p>Your group will show up here once <em>both</em> you submit an entry for your group, and at least one person (e.g., you) confirm membership.</p>
9
10<table class='pretty-table'>
11<thead>
12    <tr>
13        <th>Update ID</th>
14        <th>Group</th>
15        <th>Update time</th>
16        <th>Number of confirmations</th>
17    </tr>
18</thead>
19<tbody>
20{% for group in group_list %}
21<tr>
22    <td>{{group.id}}</td>
23    <th>{{group.group.name}}</th>
24    <td>{{group.update_time}}</td>
25    <td>{{group.num_confirms}}</td>
26</tr>
27{% endfor %}
28</tbody>
29</table>
30
31{% endblock %}
Note: See TracBrowser for help on using the repository browser.