{% extends "base.html" %} {% load compress staticfiles %} {% block title %}My Checks - healthchecks.io{% 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 %}
{% csrf_token %}
{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}