Minor fixes in emails

remotes/origin/enhancement/email-actions
Xavier Julián 2015-01-20 15:34:11 +01:00 committed by Jesús Espino
parent 0d591dcadc
commit 97d8ee0bc5
2 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,8 @@
project=project.name|safe %}
<h1>{{ error_message }}</h1>
<p>Hello {{ user }},</p>
<p>Please, try it again or contact with the support team at
<p>Your project {{ project }} has not been exported correctly </p>
<p>The Taiga system administrators have been informed.<br/> Please, try it again or contact with the support team at
<a href="mailto:{{ support_email }}" title="Support email" style="color: #699b05">{{ support_email }}</a></p>
<p><small>The Taiga Team</small></p>
{% endtrans %}

View File

@ -1,16 +1,15 @@
{% extends "emails/hero-body-html.jinja" %}
{% block body %}
{% trans full_name=membership.invited_by.get_full_name(),
project=membership.project %}
<h2>You, or someone you know, has invited you to Taiga</h2>
<p>Hi! {{ full_name }} has sent you an invitation to join a project called {{ project }} which is being managed on Taiga, a Free, open Source Agile Project Management Tool.</p>
{% trans full_name=membership.invited_by.get_full_name(), project=membership.project %}
<h2>You have been invited to Taiga!</h2>
<p>Hi! {{ full_name }} has sent you an invitation to join project <em>{{ project }}</em> in Taiga.</br> Taiga is a Free, open Source Agile Project Management Tool.</p>
{% endtrans %}
{% if membership.invitation_extra_text %}
{% trans extra=membership.invitation_extra_text|linebreaksbr %}
<p>And now a few words from the jolly good fellow or sistren who thought so kindly as to invite you:</p>
<h3>{{ extra }}</h3>
<p><small>And now a few words from the jolly good fellow or sistren<br/> who thought so kindly as to invite you</small></p>
<p><strong>{{ extra }}</strong></p>
{% endtrans %}
{% endif %}