15 lines
417 B
HTML
15 lines
417 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% for template in templates %}
|
|
<div class="template">
|
|
<div class="title"><a href="/template/{{ template.id}}" oncontextmenu="return DoEdit('{{ template.id }}');">{{ template.name }}</a></div>
|
|
</div>
|
|
{% endfor %}
|
|
{% if templates|length == 0 %}
|
|
<b>Any template</b>
|
|
{% endif %}
|
|
<div class="settings"><a href="/template/add">Add a Template</a><br/></div>
|
|
|
|
{% endblock %}
|