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.

13 lines
669 B

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