{% extends 'base.html' %} {% block title %}Resources{% endblock %} {% block content %}

Resources

Below is a list of resources, grouped by category. Resources in green are currently available while resources in red are unavailable. Click on a resource to modify its availability and status message. When a resource is unavailable, users are blocked from using tools that fully depend on that resource. You can also schedule resource outages.

{% if resources %} {% regroup resources by category as category_list %} {% for category in category_list %} {% if category.grouper %}

{{ category.grouper }}

{% endif %}
{% for resource in category.list %} {{ resource }} {% if not resource.available %} - {{ resource.restriction_message }} {% endif %}
{% endfor %}
{% endfor %} {% else %}

No resources exist yet. You can create some in the Resources section of 'Detailed Administration'.

{% endif %} {% endblock %}