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 %} {% block content %}
{% if list_of_matches %} {% if list_of_matches %}
<table> <table>
{% for match in list_of_matches %}
<tr> <tr>
<th>Title</th> <th>Title</th>
<th>Users</th> <th>Users</th>
<th>Action</th>
</tr> </tr>
{% for match in list_of_matches %}
<TR> <TR>
<TD> <TD>
{{ match[0]['title'] }} {{ match[0]['title'] }}
@ -21,6 +22,9 @@
{{ names_by_ids[card['owner_id']] }} {{ names_by_ids[card['owner_id']] }}
{% endfor %} {% endfor %}
</TD> </TD>
<TD>
<a href="mailto:email@placeholder.com">send email</a>
</TD>
</TR> </TR>
{% endfor %} {% endfor %}
</table> </table>