{% if checks %}
{% include "front/my_checks_desktop.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 %}
{% else %}
Check limit reached.
To add more checks in this project, 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" %}