Changeset beb46fb for asadb/template


Ignore:
Timestamp:
Nov 28, 2013, 11:48:36 PM (12 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, stable, stage
Children:
08b7660
Parents:
5560f6d
git-author:
Alex Dehnert <adehnert@…> (11/28/13 23:48:36)
git-committer:
Alex Dehnert <adehnert@…> (11/28/13 23:48:36)
Message:

Make issues.csv cycle-aware (ASA-#191)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asadb/template/membership/admin.html

    rd6f8984 rbeb46fb  
    66<h2>Membership confirmations &mdash; ASA Exec pages</h2>
    77
    8 <p>Exec members can check the <a href='{% url membership-issues %}'>list of groups with issues</a> (or a version <a href='{% url membership-issues %}?accounts=1'>with account numbers</a>)</p>
     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>
    926
    1027<p>The list includes the following types of issues:</p>
    1128<dl>
    12     <dt>unsubmitted</dt><dd>active groups ("group status" is "Active") who have not submitted an update (ever &mdash; see ASA-#191)</dd>
    13     <dt>confirmations</dt><dd>groups that have submitted an update (ever) but had less than five members confirm membership (again, ever &mdash; ASA-#191)</dd>
    14     <dt>50%</dt><dd>groups that (ever) submitted a confirmation with more non-students (alum, other affiliates, or other) than students (grad or undergrad)</dd>
     29    <dt>unsubmitted</dt><dd>active groups ("group status" is "Active") 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>
    1532</dl>
    1633
Note: See TracChangeset for help on using the changeset viewer.