space-accessstablestage
|
Last change
on this file was
0a31846,
checked in by Alex Dehnert <adehnert@…>, 13 years ago
|
|
Add page on database roles (ASA-#164)
|
-
Property mode set to
100644
|
|
File size:
856 bytes
|
| Line | |
|---|
| 1 | {% extends "base.html" %} |
|---|
| 2 | |
|---|
| 3 | {% block title %}Roles tracked by the database{% endblock %} |
|---|
| 4 | {% block content %} |
|---|
| 5 | |
|---|
| 6 | <h1>Roles tracked by the database</h1> |
|---|
| 7 | |
|---|
| 8 | <p>The ASA Group Database maintains the official list of individuals for the following roles:</p> |
|---|
| 9 | |
|---|
| 10 | <table class='pretty-table'> |
|---|
| 11 | <tr> |
|---|
| 12 | <th>Role</th> |
|---|
| 13 | <th>Description</th> |
|---|
| 14 | <th>Maximum allowed</th> |
|---|
| 15 | <th>Requires student?</th> |
|---|
| 16 | </tr> |
|---|
| 17 | {% for role in roles %} |
|---|
| 18 | <tr> |
|---|
| 19 | <th>{{role.display_name}}</th> |
|---|
| 20 | <td>{{role.description}}</td> |
|---|
| 21 | <td>{{role.max_count_str}}</td> |
|---|
| 22 | <td>{% if role.require_student %}Yes{%else%}No{%endif%}</td> |
|---|
| 23 | </tr> |
|---|
| 24 | {% endfor %} |
|---|
| 25 | </table> |
|---|
| 26 | |
|---|
| 27 | <p>Note: The ASA requires only a president and a treasurer. Other officers/members should be listed as applicable.</p> |
|---|
| 28 | |
|---|
| 29 | <p>In exceptional cases, we can add people beyond the normal limits. Contact us if that applies.</p> |
|---|
| 30 | |
|---|
| 31 | {% endblock %} |
|---|
Note: See
TracBrowser
for help on using the repository browser.