contentdb/app/templates/admin/tags/list.html

28 lines
639 B
HTML
Raw Normal View History

2018-05-27 18:11:02 +02:00
{% extends "base.html" %}
{% block title %}
2020-07-12 21:32:32 +02:00
{{ _("Tags") }}
2018-05-27 18:11:02 +02:00
{% endblock %}
{% block content %}
2020-07-12 21:32:32 +02:00
<a class="btn btn-primary float-right" href="{{ url_for('admin.create_edit_tag') }}">{{ _("New Tag") }}</a>
<h1>{{ _("Tags") }}</h1>
2018-05-27 18:11:02 +02:00
<p>
2020-07-12 21:32:32 +02:00
Also see <a href="/help/package_tags/">Package Tags</a>.
2018-05-27 18:11:02 +02:00
</p>
2020-07-12 21:32:32 +02:00
<div class="list-group">
2018-05-27 18:11:02 +02:00
{% for t in tags %}
2020-07-12 21:32:32 +02:00
<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>
2018-05-27 18:11:02 +02:00
{% endfor %}
2020-07-12 21:32:32 +02:00
</div>
2018-05-27 18:11:02 +02:00
{% endblock %}