Add templates management
This commit is contained in:
14
denote/templates/user_template_index.html
Normal file
14
denote/templates/user_template_index.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{% 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 %}
|
Reference in New Issue
Block a user