-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathrole_grant_accepted.eml
More file actions
23 lines (20 loc) · 1.02 KB
/
role_grant_accepted.eml
File metadata and controls
23 lines (20 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "notification/base.eml" %}
{% block subject %}
{# We are putting |safe here because an e-mail's subject line shouldn't be
HTML encoded. #}
{% trans user=user.printable_name|safe, organization=profile.printable_name|safe, role_description=role_description.title %}{{user}} was added as a {{role_description}} to {{organization}}{% endtrans %}
{% endblock %}
{% block title %}{% trans user=user.printable_name, organization=profile.printable_name, role_description=role_description.title %}{{user}} was added as a {{role_description}} to {{organization}}{% endtrans %}{% endblock %}
{% block html_content %}
<div>
{% if detail %}
<p>
{{detail|md}}
</p>
{% endif %}
<p>
{% trans back_url=back_url, organization=profile.printable_name, role_description=role_description.title %}You can review who has a {{role_description}} to <a href="{{back_url}}">{{organization}} profile</a> now by clicking on the previous link or copy/pasting the following link in your browser:{% endtrans %}
{{back_url}}
</p>
</div>
{% endblock %}