1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-09-28 23:10:48 +00:00

Bugfix placement of "recent downloads in "edit user section"

This commit is contained in:
OzzieIsaacs 2017-02-25 13:34:33 +01:00
parent 156a653c49
commit 679effbaef

View File

@ -116,11 +116,10 @@
<a href="{{ url_for('admin') }}" id="back" class="btn btn-default">{{_('Back')}}</a>
</div>
{% endif %}
</form>
{% if downloads %}
<div class="col-sm-12">
<h2>{{_('Recent Downloads')}}</h2>
{% for entry in downloads %}
<div class="col-sm-2">
@ -129,6 +128,7 @@
</a>
</div>
{% endfor %}
</div>
{% endif %}
</div>
{% endblock %}