setting up mailto action for matches
parent
68f50d7150
commit
f837501f10
|
@ -7,11 +7,12 @@
|
|||
{% block content %}
|
||||
{% if list_of_matches %}
|
||||
<table>
|
||||
{% for match in list_of_matches %}
|
||||
<tr>
|
||||
<th>Title</th>
|
||||
<th>Users</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
{% for match in list_of_matches %}
|
||||
<TR>
|
||||
<TD>
|
||||
{{ match[0]['title'] }}
|
||||
|
@ -21,6 +22,9 @@
|
|||
{{ names_by_ids[card['owner_id']] }}
|
||||
{% endfor %}
|
||||
</TD>
|
||||
<TD>
|
||||
<a href="mailto:email@placeholder.com">send email</a>
|
||||
</TD>
|
||||
</TR>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
|
Loading…
Reference in New Issue