{% extends "base.html" %} {% block title %}Resources - Supavision{% endblock %} {% block content %} {% if resources %}
{% for r in resources %}
{{ r.name }}
{{ r.resource_type | replace('_', ' ') }} {% if r.severity %} {{ r.severity }} {% else %} no data {% endif %}
{{ r.explanation }}
{{ r.impact }}
{% endfor %}
{% else %}

Add your first resource

Resources are the servers, databases, and cloud accounts Supavision monitors.

Monitor a Server More Options
{% endif %} {% endblock %}