source: asadb/template/index.html

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

Merge branch 'master' into space-access

  • master: (43 commits) Color NGEs differently from inactive groups Don't add NGEs to asa-official (ASA-#231) Take is_active out of str(GroupStatus?) (ASA-#230) Add group status to account lookup (ASA-#203) Add help text about Athena lockername selection Sort the "Update people" page (partial ASA-#232) Sort the signatories page (partial ASA-#232) Sort the officers of a group (partial ASA-#232) Validate P/T usernames in group creation form Remove spurious slash in new group email (ASA-#217) Use absolute path to templates (ASA-#211) Show group status on the non-student officers page Prevent 500'ing while uploading midway assignments "Upload table assignments" link (ASA-#225) Add midway tab Add midway list page (ASA-#226) Handle duplicate groups Fix spelling of midway permission Add the midway permissions to the asa-ebm group Allow running diff_static_data from any directory ...

Conflicts:

asadb/space/admin.py

  • Property mode set to 100644
File size: 4.0 KB
Line 
1{% extends "base.html" %}
2
3{% block title %}ASA Group Database{% endblock %}
4{% block content %}
5
6<h1><a href='http://web.mit.edu/asa/'>ASA</a> Group Database</h1>
7
8<p>Here you can find and submit information about groups recognized by the <a href='http://web.mit.edu/asa/'>MIT Association of Student Activities</a>.</p>
9
10<h2>My Groups</h2>
11
12{% if user.is_anonymous %}
13<p><a href='{% url login %}'>Login</a> to see your groups.</p>
14{% else %}
15{%if not groups %}
16<p>You do not currently appear to be listed with any groups.</p>
17{% endif %}
18{% endif %}
19
20{% if groups %}
21<ul>
22{% for group in groups %}
23    <li><a href='{% url groups:group-detail group.pk %}'>{{group}}</a></li>
24{%endfor%}
25</ul>
26{% endif %}
27
28<h2>Tools</h2>
29<ul>
30    <li><a href='http://web.mit.edu/asa/'>ASA Homepage</a></li>
31    <li>General group information<ul>
32        <li><a href='{%url groups:search%}'>Search groups</a></li>
33        <li><a href='{%url groups:list%}'>List of groups</a></li>
34        {%if perms.groups.view_signatories %}<li><a href='{% url groups:signatories %}'>View Signatories</a></li>{%endif%}
35        {%if perms.groups.view_group_private_info %}
36        <li><a href='{%url groups:reporting%}'>Reporting</a></li>
37        <li><a href='{%url groups:reporting-nonstudents%}'>Non-student group officers</a></li>
38        <li><a href='{%url groups:constitutions%}'>Constitutions</a></li>
39        {%endif%}
40        <li><a href='{%url groups:account-lookup%}'>Account lookup</a></li>
41    </ul></li>
42    <li>First Year Summer Mailing<ul>
43        <li><a href='{%url fysm%}'>View the entries</a></li>
44        <li><a href='{%url fysm-select%}'>Submit an entry</a></li>
45    </ul></li>
46    <li><a href='{% url midway-list %}'>Midways</a>: <a href='{% url midway-map-latest %}'>latest map</a></li>
47    <li>Membership updates<ul>
48        <li><a href='{%url membership-update-cycle %}'>Group update</a></li>
49        <li><a href='{%url membership-confirm%}'>Individual confirmations</a></li>
50        <li><a href='{%url membership-submitted%}'>Groups with submitted updates</a></li>
51        {% if perms.groups.view_group_private_info %}<li><a href='{%url membership-admin %}'>Issues with submissions</a></li>{% endif %}
52    </ul></li>
53    <li>Group recognition<ul>
54        <li><a href='http://web.mit.edu/asa/start/new-group-app.html'>New Group Application</a></li>
55        {%if perms.groups.add_group %}<li><a href='{% url groups:startup %}'>Startup form</a></li>{%endif%}
56        {%if perms.groups.add_group %}<li><a href='{% url groups:startup-list %}'>Review startup applications</a></li>{%endif%}
57        {%if perms.groups.recognize_nge %}<li><a href='{% url groups:recognize-nge %}'>Recognize Non-Group Entity</a></li>{%endif%}
58    </ul></li>
59    <li><a href='{% url space-summary %}'>Space assignments</a>
60        <ul>
61        <li><a href='{% url space-lock-type %}'>Lock Types</a></li>
62        {% if perms.groups.view_group_private_info %}
63        <li><a href='{% url space-dump-locker-access %}'>Locker access (CSV)</a></li>
64        <li><a href='{% url space-dump-office-access %}'>Office access (CSV)</a></li>
65        {% endif %}
66        </ul>
67    </li>
68    <li><a href='{% url about %}'>About the ASA Database</a><ul>
69        <li><a href='{% url about-data %}'>Use of Data</a></li>
70    </ul></li>
71    <li>Related resources<ul>
72        <li><a href='http://web.mit.edu/asa/'>Association of Student Activities (ASA)</a></li>
73        <li><a href='http://studentlife.mit.edu/sao'>Student Activities Office (SAO)</a></li>
74        <li><a href='http://studentlife.mit.edu/cac'>Campus Activities Complex (CAC)</a></li>
75        {% if user.is_staff %}
76        <li><a href='https://web.mit.edu/asa/exec_files/Documents/resources.txt'>Resources for ASA Exec members</a></li>
77        {% endif %}
78    </ul></li>
79</ul>
80
81{% if has_perms %}
82<h2>Permissions</h2>
83
84<p>You have the following permissions:</p>
85
86<table class='pretty-table'>
87<tr>
88    <th>Name</th>
89    <th>Description</th>
90</tr>
91{% for perm_name, perm_desc in has_perms %}
92<tr>
93    <td>{{perm_name}}</td>
94    <td>{{perm_desc}}</td>
95</tr>
96{% endfor %}
97</table>
98{% endif %}
99
100{% endblock %}
Note: See TracBrowser for help on using the repository browser.