You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
669 B

{% macro build(links_list, table) %}
<table class="table table-striped table-dark" style="table-layout: fixed">
<tbody>
{% if links_list is defined %}
{% for link in links_list %}
<tr id="{{ table }}-{{ link[0] }}">
<th class="clip-row"><a href="{{ link[2] }}" target="_blank" class="game-link">{{ link[1] }}</a></th>
<td style="vertical-align: middle; width: 55px; padding-left: 0px;"><a href="#" onclick="deleteEntry({{ link[0] }}, '{{ table }}')" class="text-danger">Delete</a></td>
</tr>
{% endfor %}
{% endif %}
</tbody>
</table>
{% endmacro %}