{% extends "base.html" %} {% block title %}{{ _("Watch build %s") % build.name }}{% end block %} {% block body %}

{{ _("You may here add yourself to the list of watchers of this build.") }} {{ _("If you do so, you will receive messages about new comments and status updates.") }}

{% if not current_user.is_admin() and current_user in watchers %}

{{ _("Oops!") }}

{{ _("You are already watching this build.") }}
{% end %}
{% raw xsrf_form_html() %}
{% if current_user.is_admin() %}

{{ _("Choose a user who should watch this build.") }}

{% else %}
{{ current_user.realname }}
{% end %}
{% end block %}