contentdb/app/templates/admin/tags/list.html
2020-07-12 20:34:16 +01:00

28 lines
639 B
HTML

{% extends "base.html" %}
{% block title %}
{{ _("Tags") }}
{% endblock %}
{% block content %}
<a class="btn btn-primary float-right" href="{{ url_for('admin.create_edit_tag') }}">{{ _("New Tag") }}</a>
<h1>{{ _("Tags") }}</h1>
<p>
Also see <a href="/help/package_tags/">Package Tags</a>.
</p>
<div class="list-group">
{% for t in tags %}
<a class="list-group-item list-group-item-action"
href="{{ url_for('admin.create_edit_tag', name=t.name) }}">
<span class="float-right badge badge-primary badge-pill">
{{ t.packages | count }}
</span>
{{ t.title }}
</a>
{% endfor %}
</div>
{% endblock %}