-
Notifications
You must be signed in to change notification settings - Fork 1
/
guest-request-email.html
73 lines (59 loc) · 1.45 KB
/
guest-request-email.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<%inherit file="./base_email.html"/>
<%!
import markupsafe
def br(text):
return text.replace('\n', markupsafe.Markup('<br />'))
%>
<%block name="sub_title">Guest Access Request</%block>
<%block name="main_container">
% for field in fields:
<table class="row">
<tr>
<td class="wrapper">
<table class="four columns">
<tr>
<td class="label">${field['display_name']}</td>
<td class="expander"></td>
</tr>
</table>
</td>
<td class="wrapper last">
<table class="height columns">
<tr>
<td>
% if field['type'] == 'textarea':
${field['value'] | br}
% else:
${field['value']}
% endif
</td>
<td class="expander"></td>
</tr>
</table>
</td>
</tr>
</table>
% endfor
<table class="row">
<tr>
<td class="wrapper offset-by-two last">
<table class="six columns">
<tr>
<td>
<table class="button radius">
<tbody>
<tr>
<td>
<a href="${action_url}">Grant Access</a>
</td>
</tr>
</tbody>
</table>
</td>
<td class="expander"></td>
</tr>
</table>
</td>
</tr>
</table>
</%block>