source: asadb/template/membership/admin.html

stablestage
Last change on this file was 21ab6b3, checked in by Alex Dehnert <adehnert@…>, 12 years ago

Standarize on UK-style ndashes

"foo --- bar" not only looks ugly, but apparently nobody really uses it.
Apparently US-style is "foo---bar" and UK-style is "foo -- bar", and I think
the latter looks better so I'm using it.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{% extends "base.html" %}
2
3{% block title %}Membership confirmations &ndash; ASA Exec pages{% endblock %}
4{% block content %}
5
6<h2>Membership confirmations &ndash; ASA Exec pages</h2>
7
8<p>Exec members can check the issues:</p>
9
10<table class='pretty-table'>
11<tr>
12    <th>Name</th>
13    <th>Create date</th>
14    <th>Issues</th>
15    <th>(with accounts)</th>
16</tr>
17{% for cycle in cycle_list %}
18<tr>
19    <th>{{cycle.name}}</th>
20    <td>{{cycle.create_date}}</td>
21    <td><a href='{% url membership-issues cycle.slug %}'>Issues</a></td>
22    <td><a href='{% url membership-issues cycle.slug %}?accounts=1'>(with accounts)</a></td>
23</tr>
24{% endfor %}
25</table>
26
27<p>The list includes the following types of issues:</p>
28<dl>
29    <dt>unsubmitted</dt><dd>active or suspended groups who have not submitted an update
30    <dt>confirmations</dt><dd>groups that have submitted an update but had less than five members confirm membership</dd>
31    <dt>50%</dt><dd>groups that submitted a confirmation with more non-students (alum, other affiliates, or other) than students (grad or undergrad)</dd>
32</dl>
33
34<p>The technically-inclined may wish to read <a href='http://asa.scripts.mit.edu/trac/browser/asadb/forms/views.py'>/asadb/forms/views.py</a> to verify these issue types.</p>
35
36{% endblock %}
Note: See TracBrowser for help on using the repository browser.