46 lines
1.5 KiB
Twig
46 lines
1.5 KiB
Twig
{% block subject %}
|
|
{{site.title}} - new organisation requires approval
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<p>
|
|
Dear {{recipient.first_name}},
|
|
</p>
|
|
<p>
|
|
Someone has created a new organisation which requires approving at {{site.title}} ({{site.uri.public}}).
|
|
</p>
|
|
<p>
|
|
The organisation details are:
|
|
<dl>
|
|
<dt>Requester name:</dt>
|
|
<dd>{{requester.full_name}}</dd>
|
|
|
|
<dt>Requester email:</dt>
|
|
<dd>{{requester.email}}</dd>
|
|
|
|
<dt>Organisation name:</dt>
|
|
<dd>{{organisation.name}}</dd>
|
|
|
|
<dt>Organisation description:</dt>
|
|
<dd>{{organisation.description}}</dd>
|
|
</dl>
|
|
</p>
|
|
<p>
|
|
You may approve or deny this organisation via the control dashboard (<a href="{{site.uri.public}}/organisations">{{site.uri.public}}/organisations</a>).
|
|
</p>
|
|
<p>
|
|
To approve this organisation immediately you may do so by visiting: <a href="{{site.uri.public}}/organisations/registration/approve?token={{token}}">{{site.uri.public}}/organisations/approve?token={{token}}</a>.
|
|
</p>
|
|
<p>
|
|
To deny this organisation immediately you may do so by visiting: <a href="{{site.uri.public}}/organisations/registration/deny?token={{token}}">{{site.uri.public}}/organisations/deny?token={{token}}</a>.
|
|
</p>
|
|
{% if approval_expiration %}
|
|
<p>
|
|
The approval period for this organisation will expire in {{approval_expiration}} at which point the organisation registration will be automatically denied.
|
|
</p>
|
|
{% endif %}
|
|
<p>
|
|
With regards,<br>
|
|
The {{site.title}} Team
|
|
</p>
|
|
{% endblock %} |