Pslink/templates/index.html

19 lines
441 B
HTML
Raw Normal View History

2021-02-04 15:07:55 +01:00
{% extends "admin.html" %}
{% block admin %}
2021-02-07 20:35:45 +01:00
<table>
{% for links_user in links_per_users %}
{% set l = links_user[0] %}
{% set u = links_user[1] %}
<a href="/admin/view/{{l.code}}">
<tr>
<td><span>{{l.code}}:</span></td>
<td>{{ l.target }}</td>
<td>
<small>{{ u.username }}</small>
</td>
</tr>
</a>
{% endfor %}
</table>
2021-02-04 15:07:55 +01:00
{% endblock %}