{% extends "base.html" %} {% load compress staticfiles hc_extras %} {% block title %}My Checks - {% site_name %}{% endblock %} {% block content %}

{% if request.team == request.user.profile %} My Checks {% else %} {{ request.team.team_name }} {% endif %}

{% if tags %}
{% for tag, count in tags %} {% if tag in down_tags %} {% elif tag in grace_tags %} {% else %} {% endif %} {% endfor %}
{% endif %}
{% if checks %} {% include "front/my_checks_mobile.html" %} {% include "front/my_checks_desktop.html" %} {% else %}
You don't have any checks yet.
{% endif %}
{% if can_add_more %}
{% csrf_token %}
{% else %}
Check limit reached. To add more checks, please upgrade your account!
{% endif %}
{% csrf_token %}
{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}