{% extends "dashboard/base.html" %} {% block dashboard_header %}

Collections

Manage tool collections

New Collection ← Back to Admin
{% endblock %} {% block dashboard_content %}
{% if collections %}
{% for coll in collections %} {% endfor %}
Collection Maintainer Tools Tags Actions
{{ coll.display_name }}
{{ coll.name }}
{% if coll.description %}
{{ coll.description[:80] }}{% if coll.description|length > 80 %}...{% endif %}
{% endif %}
{{ coll.maintainer }} {{ coll.tools|length }} {% for tag in coll.tags[:3] %} {{ tag }} {% endfor %} {% if coll.tags|length > 3 %} +{{ coll.tags|length - 3 }} {% endif %} Edit
{% else %}

No collections

Get started by creating a new collection.

{% endif %}
{% endblock %}