41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{% import "templates/emails/macros.html" as utils %}
|
|
{% extends "templates/emails/base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<td class="text-base leading-6 text-gray-900">
|
|
<div class="p-8 bg-white">
|
|
<p class="mb-4 font-bold">
|
|
{%- if subject -%}
|
|
{{ subject }}
|
|
{%- endif -%}
|
|
</p>
|
|
|
|
<p>
|
|
{%- if status == 'Rejected' -%}
|
|
Unfortunately, your approval request for <a class="text-blue-500" href="{{ releases_link }}">'{{
|
|
commit_message
|
|
}}'</a> app
|
|
release has been rejected.
|
|
The reason for rejection:
|
|
{{ rejection_reason }}
|
|
{%- endif -%}
|
|
|
|
{%- if status == 'Approved' -%}
|
|
Hurray! Your approval request for <a class="text-blue-500" href="{{ releases_link }}">'{{ commit_message
|
|
}}'</a>
|
|
app release has
|
|
been accepted and this release will be
|
|
published in the Marketplace.
|
|
{%- endif -%}
|
|
</p>
|
|
|
|
{%- if status == 'Approved' -%}
|
|
<p class="text-base mt-5">
|
|
Note: Once approved, it might take upto a week for a release to be deployed on marketplace.
|
|
</p>
|
|
{%- endif -%}
|
|
</div>
|
|
</td>
|
|
|
|
{% endblock %} |