setting up mailto action for matches

master
Kostanjevec 2022-06-15 02:56:47 +02:00
parent 68f50d7150
commit f837501f10
1 changed files with 5 additions and 1 deletions

View File

@ -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>