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.
15 lines
481 B
15 lines
481 B
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<p>Showing all <strong>{{count}}</strong> attached links</p>
|
|
{% for label in linklist %}
|
|
<p>
|
|
<span class="code">{{label['code']}}</span>:
|
|
|
|
<a href="/code/{{label['code']}}.png" class="linkonalist">Show QR</a> | <a href="/edit?code={{label['code']}}" class="linkonalist">Edit</a>
|
|
<br />
|
|
<a href="{{label['url']}}" class="linkonalist">{{label['url']}}</a>
|
|
<hr>
|
|
</p>
|
|
{% endfor %}
|
|
{% endblock %} |