From 4404a58b45375f7df5995a6679cfd0c6f8c44c10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Juli=C3=A1n?= Date: Thu, 9 Oct 2014 09:59:10 +0200 Subject: [PATCH] Basic email template layout --- .../emails/registered_user-body-html.jinja | 29 ++++++++++++++----- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/taiga/users/templates/emails/registered_user-body-html.jinja b/taiga/users/templates/emails/registered_user-body-html.jinja index 9db5151a..ba48feb9 100644 --- a/taiga/users/templates/emails/registered_user-body-html.jinja +++ b/taiga/users/templates/emails/registered_user-body-html.jinja @@ -1,12 +1,27 @@ -Welcome to Taiga, an Open Source, Agile Project Management Tool +{% extends "emails/base.jinja" %} -You, or someone you know has invited you to Taiga. You may remove your account from this service by clicking here: +{% block body %} + + + + +
+

Welcome to Taiga, an Open Source, Agile Project Management Tool

-{{ resolve_front_url('cancel-account', user.cancel_token) }} +

You, or someone you know has invited you to Taiga. You may remove your account from this service by clicking here:

-We built Taiga because we wanted the project management tool that sits open on our computers all day long, to serve as a continued reminder of why we love to collaborate, code and design. We built it to be beautiful, elegant, simple to use and fun - without forsaking flexibility and power. We named it Taiga after the forest biome, because like its namesake, our tool is at the center of an ecosystem - your team, your projects. A great project management tool also helps you see the forest for the trees. We couldn't think of a more appropriate name for what we've done. + {{ resolve_front_url('cancel-account', user.cancel_token) }} + +

We built Taiga because we wanted the project management tool that sits open on our computers all day long, to serve as a continued reminder of why we love to collaborate, code and design. We built it to be beautiful, elegant, simple to use and fun - without forsaking flexibility and power. We named it Taiga after the forest biome, because like its namesake, our tool is at the center of an ecosystem - your team, your projects. A great project management tool also helps you see the forest for the trees. We couldn't think of a more appropriate name for what we've done.

+ +

We hope you enjoy it.

+
+{% endblock %} + +{% block footer %} +

+ The Taiga development team. +

+{% endblock %} -We hope you enjoy it. --- -The Taiga development team.