{% extends "messages/email/applicant_base.html" %}
{% load i18n %}
{% block content %}
{% blocktrans with title=source.title date_from=invoice.date_from date_to=invoice.date_to %}An {{ ORG_SHORT_NAME }} staff member has updated your invoice for {{ title }} for period {{ date_from }} to {{ date_to }}.{% endblocktrans %}
{% blocktrans with status=invoice.get_status_display %}It is now {{ status }}.{% endblocktrans %}
{% if has_changes_requested and invoice.comment %}
{% trans "The staff member left this comment" %}:
{{ invoice.comment }}
{% endif %}
{% trans "Invoice Link" %}: {{ request.scheme }}://{{ request.get_host }}{{ invoice.get_absolute_url }}
{% trans "Title" %}: {{ source.title }}
{% trans "Project Link" %}: {{ request.scheme }}://{{ request.get_host }}{{ source.get_absolute_url }}
{% endblock %}