ttvdrops/templates/twitch/org_list.html
Joakim Helleśen 4627d1cea0
All checks were successful
Deploy to Server / deploy (push) Successful in 10s
Add /discord/ feed
2026-03-14 02:50:40 +01:00

31 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block title %}
Organizations
{% endblock title %}
{% block content %}
<h1>Organizations</h1>
<div>
<a href="{% url 'twitch:organization_feed' %}"
title="RSS feed for all organizations">[rss]</a>
<a href="{% url 'twitch:organization_feed_atom' %}"
title="Atom feed for all organizations">[atom]</a>
<a href="{% url 'twitch:organization_feed_discord' %}"
title="Discord feed for all organizations">[discord]</a>
<a href="{% url 'twitch:export_organizations_csv' %}"
title="Export all organizations as CSV">[csv]</a>
<a href="{% url 'twitch:export_organizations_json' %}"
title="Export all organizations as JSON">[json]</a>
</div>
{% if orgs %}
<ul>
{% for organization in orgs %}
<li>
<a href="{% url 'twitch:organization_detail' organization.twitch_id %}">{{ organization.name }}</a>
</li>
{% endfor %}
</ul>
{% else %}
<p>No organizations found.</p>
{% endif %}
{{ orgs_data|safe }}
{% endblock content %}