houdini/app/views/components/email/_supporter_table.html.erb
2020-06-15 10:26:57 -05:00

31 lines
664 B
Text

<%- # License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
<table class='table'>
<thead>
<th colspan='2'>Supporter Info</th>
</thead>
<tbody>
<tr>
<td><strong>Name</strong></td>
<td><%= supporter.name %></td>
</tr>
<tr>
<td><strong>Email</strong></td>
<td><%= supporter.email %></td>
</tr>
<tr>
<td><strong>Address</strong></td>
<td>
<%= Format::Address.with_supporter(supporter) %>
</td>
</tr>
<tr>
<td><strong>Phone</strong></td>
<td><%= Format::Phone.readable(supporter.phone) %></td>
</tr>
</tbody>
</table>