{% extends "base.html" %} {% block title %}Watchlist · IP TM Manager{% endblock %} {% block body %}

Watchlist

Marks you watch on behalf of clients. Each new application is scored against these; matches appear under Alerts.

{% if current_user and current_user.is_admin %}

Add Watched Mark

{% endif %}

Watched Marks

{% if current_user and current_user.is_admin %}{% endif %} {% for w in marks %} {% if current_user and current_user.is_admin %} {% endif %} {% else %}{% endfor %}
MarkFarsiClientClassesStatus
{{ w.label }} {{ w.farsi or '—' }} {{ w.client_name or '—' }} {% if w.classes %}{{ w.classes }}{% else %}all{% endif %} {{ 'active' if w.active else 'paused' }}
No watched marks yet.
{% endblock %}