##// END OF EJS Templates
notifications: adding footer to email template main.mako
lisaq -
r510:303d31a1 default
parent child Browse files
Show More
@@ -1,16 +1,21 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2 <%inherit file="base.mako"/>
2 <%inherit file="base.mako"/>
3
3
4 <%def name="subject()" filter="n,trim">
4 <%def name="subject()" filter="n,trim">
5 </%def>
5 </%def>
6
6
7
7
8 ## plain text version of the email. Empty by default
8 ## plain text version of the email. Empty by default
9 <%def name="body_plaintext()" filter="n,trim">
9 <%def name="body_plaintext()" filter="n,trim">
10 ${body}
10 ${body}
11
12 ${self.plaintext_footer()}
11 </%def>
13 </%def>
12
14
13 ## BODY GOES BELOW
15 ## BODY GOES BELOW
14 <table style="text-align:left;vertical-align:top;">
16 <table style="text-align:left;vertical-align:top;">
15 <tr><td style="padding-right:20px;padding-top:15px;white-space:pre-wrap">${body}</td></tr>
17 <tr><td style="padding-right:20px;padding-top:15px;white-space:pre-wrap">${body}</td></tr>
16 </table> No newline at end of file
18 </table
19 <p><a style="margin-top:15px;margin-left:1%;font-family:sans-serif;font-weight:100;font-size:11px;display:block;color:#666666;text-decoration:none;" href="${instance_url}">
20 ${self.plaintext_footer()}
21 </a></p> No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now