{% extends 'base.html' %} {% load custom_tags_and_filters %} {% 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, status message or to schedule an outage.
When a resource is unavailable, users are blocked from using tools or login to areas that fully depend on that resource.

{% 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 %} {% elif user.is_superuser and "django.contrib.admin"|app_installed %}

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

{% endif %} {% endblock %}