add CLI tools support

This commit is contained in:
2018-01-25 13:20:59 +02:00
parent ca4ca7dd4c
commit 94860d5195
7 changed files with 49 additions and 11 deletions

View File

@@ -20,7 +20,7 @@
{% if public %}
Share is <a href="{{ url_for('index') }}">public</a>
{% else %}
Share is private
Share is <a href="{{ url_for('index') }}">unlisted</a>
{% endif %}
</div>
<div id=list_expire>
@@ -30,6 +30,9 @@
Share never expires
{% endif %}
</div>
<div id=list_logout>
<a href="{{ url_for('logout',name=name) }}">Logout</a> from this share
</div>
</div>
<div class=clear></div>
<table class="sortable" id="list_table">

View File

@@ -0,0 +1,4 @@
{% extends "layout.html" %}
{% block body %}
You are logged out from <a href="{{ url_for('list_view',name=name) }}">{{ name|safe }}</a>
{% endblock %}