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

Publishers

Manage registry publishers

← Back to Admin
{% endblock %} {% block dashboard_content %}
{% if publishers %}
{% for pub in publishers %} {% endfor %}
Publisher Role Tools Downloads Status Actions
{{ pub.display_name }}
@{{ pub.slug }}
{{ pub.role }} {{ pub.tool_count }} {{ pub.total_downloads|default(0)|int }} {% if pub.banned %} Banned {% elif pub.verified %} Verified {% else %} Active {% endif %} {% if user.role == 'admin' and pub.role != 'admin' %} {% if pub.banned %} {% else %} {% endif %} {% endif %}
{% if meta.total_pages > 1 %}
Page {{ meta.page }} of {{ meta.total_pages }} ({{ meta.total }} total)
{% if meta.page > 1 %} Previous {% endif %} {% if meta.page < meta.total_pages %} Next {% endif %}
{% endif %} {% else %}

No publishers found

{% endif %}
{% endblock %}