add CLI tools support
This commit is contained in:
@@ -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">
|
||||
|
||||
4
code/templates/logout.html
Normal file
4
code/templates/logout.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user