{% extends "base_project.html" %} {% load compress static hc_extras %} {% block title %}{{ num_down|num_down_title }}{% endblock %} {% block favicon %} {% if num_down %} {% else %} {% endif %} {% endblock %} {% block content %} {% if num_available < 0 %}

{% if request.user == project.owner %} Your account is currently over its check limit. Please upgrade, or reduce the number of checks in your account. {% else %} The account {{ project.owner.email }} is currently over its check limit. Please ask {{ project.owner.email }} to upgrade their account. {% endif %} Accounts that remain over the limit for more than 30 days are scheduled for deletion.

Project's Owner: {{ project.owner.email }}
Current Plan: {% if project.owner.subscription and project.owner.subscription.plan_name %} {{ project.owner.subscription.plan_name }} {% else %} Hobbyist (free) {% endif %}
Checks Used: {{ project.owner.profile.num_checks_used }} of {{ project.owner.profile.check_limit }}
{% if request.user == project.owner %}

Billing Details and Plan Upgrades

{% endif %}
{% endif %} {% if checks %}
{% for tag, status, tooltip in tags %}
{{ tag }}
{% endfor %}
{% endif %}
{% if checks %} {% include "front/checks_table.html" %} {% else %}
The project {{ project }} does not have any checks yet.
{% endif %}
{% if rw %}
{% if num_available > 0 %} {% if num_available <= 10 %}
({{ checks|length }} in use, {{ num_available }} available)
{% endif %} {% elif num_available == 0 %}
There are more things to monitor. To add more checks, please {% if request.user == project.owner %} upgrade your account. {% else %} ask {{ project.owner.email }} to upgrade their account. {% endif %}
{% endif %}
{% endif %} {% include "front/update_name_modal.html" %} {% include "front/update_timeout_modal.html" %} {% include "front/add_check_modal.html" %} {% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}