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
410 B
14 lines
410 B
6 years ago
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<p>ALL used links: (this many)</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" class="linkonalist">Edit</a>
|
||
|
<br />
|
||
|
<a href="{{label['url']}}" class="linkonalist">{{label['url']}}</a>
|
||
|
<hr>
|
||
|
</p>
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|