{% extends "base.html" %} {% block title %}warhawk-watch{% endblock %} {% block content %}

warhawk-watch

Polling warhawk.io every {{ poll_interval }}s. You'll get an email at {{ current_user['email'] }} on appear/disappear.

Watched users

{% for u in watched_users %} {% else %} {% endfor %}
Account nameStatus
{{ u['account_name'] }} {{ 'online' if u['is_online'] else 'offline' }}
No watched users yet.

Watched servers

{% for s in watched_servers %} {% else %} {% endfor %}
Match typeValueStatus
{{ s['match_type'] }} {{ s['match_value'] }} {{ 'up' if s['is_up'] else 'down' }}
No watched servers yet.
{% endblock %}