space-accessstablestage
|
Last change
on this file was
8aea837,
checked in by Alex Dehnert <adehnert@…>, 13 years ago
|
|
Incorporate feedback from CAC
- Expand the description for "CAC Combo Only"
- Link to the description of "CAC Key" on the ASA website
|
-
Property mode set to
100644
|
|
File size:
1.0 KB
|
| Line | |
|---|
| 1 | {% extends "base.html" %} |
|---|
| 2 | |
|---|
| 3 | {% block title %}Lock Types{% endblock %} |
|---|
| 4 | {% block content %} |
|---|
| 5 | |
|---|
| 6 | <h1>Lock Types</h1> |
|---|
| 7 | |
|---|
| 8 | <p>Access to most ASA-allocated space is controlled using MIT IDs, and can be granted or revoked through the ASA Database. Some offices have access controlled through other mechanisms, described below. The <a href='{% url space-summary %}'>space summary page</a> lists which offices use which access access control mechanism.</p> |
|---|
| 9 | |
|---|
| 10 | <table class='pretty-table'> |
|---|
| 11 | <tr> |
|---|
| 12 | <th>Name</th> |
|---|
| 13 | <th>Description</th> |
|---|
| 14 | <th>For more information,<br>contact...</th> |
|---|
| 15 | <th>Managed in the ASA DB?</th> |
|---|
| 16 | </tr> |
|---|
| 17 | {% for lock_type in lock_types %} |
|---|
| 18 | <tr> |
|---|
| 19 | <th>{{lock_type.name}}</th> |
|---|
| 20 | <td>{{lock_type.description}}{% if lock_type.info_url %} <a href='{{lock_type.info_url}}'>Details.</a>{%endif%}</td> |
|---|
| 21 | <td><a href='mailto:{{lock_type.info_addr}}'>{{lock_type.info_addr}}</a></td> |
|---|
| 22 | <td>{% if lock_type.db_update != "none" %}Yes: {%endif%}{{lock_type.get_db_update_display}}</td> |
|---|
| 23 | </tr> |
|---|
| 24 | {% endfor %} |
|---|
| 25 | </table> |
|---|
| 26 | |
|---|
| 27 | {% endblock %} |
|---|
Note: See
TracBrowser
for help on using the repository browser.