parent
8dc0952df2
commit
1aaf5bd1b1
@ -0,0 +1,10 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block content %}
|
||||
<form action=/generate method="post">
|
||||
How many?:<br />
|
||||
<input type="number" name="howmany" value="20"/><br />
|
||||
<button type="submit" class="graybar" >Generate </button><br />
|
||||
Note: It is best to print the generated codes immediatly from the result of this generation.
|
||||
</form>
|
||||
{% endblock %}
|
@ -0,0 +1,14 @@
|
||||
{% 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 %}
|
Loading…
Reference in new issue