You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calibre-web/cps/templates/list.html

13 lines
399 B
HTML

{% extends "layout.html" %}
{% block body %}
<h1>{{title}}</h1>
<div class="container">
{% for entry in entries %}
<div class="row">
<div class="col-xs-1" align="left"><span class="badge">{{entry.count}}</span></div>
<div class="col-xs-6"><a href="{{url_for(folder, name=entry[0].name)}}">{{entry[0].name}}</a></div>
</div>
{% endfor %}
</div>
{% endblock %}