{% extends 'email_base.txt' %}
{% load email %}

{% block name %} {{ addressee }}{% endblock name %}
{% block content %}{{ agg }} has recovered after being down for {{ agg.last_failed_time | timesince }}. You can view {{ agg }}'s details at {% absolute_url 'aggregator-details' agg.id %}.
{% if auto_bonds %}
Bonds automatically moved back to {{ agg }}:
{% for bond in auto_bonds %}- {{ bond }} {% absolute_url 'bond-details' bond.id %}
{% endfor %}{% endif %}{% if manual_bonds %}

Bonds requiring manual intervention to move back to {{ agg }}:
{% for bond in manual_bonds %}- {{ bond }} {% absolute_url 'bond-details' bond.id %}
{% endfor %}
{% endif %}
You can update your notification preferences at {% absolute_url 'account' %}.{% endblock content %}
