{% load i18n %}{% autoescape off %}{% if user %}{% blocktrans with name=user.get_full_name %}Hello {{ name }},{% endblocktrans %}{% else %}{% trans "Hello," %}{% endif %}

{% blocktrans count count as count %}in the last 24 hours there was an update on one request that you follow.{% plural %}in the last 24 hours there were updates to {{ count }} requests that you follow.{% endblocktrans %}
{% for request, container in req_event_dict.items %}
{% blocktrans with title=request.title %}Updates to the request "{{ title }}"{% endblocktrans %}:
{% for event in container.events %} - {{ event }}
{% endfor %}
{% blocktrans with link=request.get_absolute_domain_short_url %}Visit this request:

{{ link }}{% endblocktrans %}


{% blocktrans with unfollow_link=container.unfollow_link %}If you want to UNFOLLOW this request, click this link:
{{ unfollow_link }}{% endblocktrans %}

{% endfor %}
{% blocktrans with site_name=site_name %}
Cheers,
{{ site_name }}
{% endblocktrans %}{% endautoescape %}
{% include "foirequest/emails/user_footer.txt" %}
