ttvdrops/templates/twitch/org_list.html

25 lines
839 B
HTML

{% extends "base.html" %}
{% block title %}
Organizations
{% endblock title %}
{% block content %}
<h1 id="page-title">Organizations</h1>
<!-- RSS Feeds -->
<div style="margin-bottom: 1rem;">
<a href="{% url 'twitch:organization_feed' %}"
style="margin-right: 1rem"
title="RSS feed for all organizations">RSS feed for organizations</a>
</div>
{% if orgs %}
<ul id="org-list">
{% for organization in orgs %}
<li id="org-{{ organization.twitch_id }}">
<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 %}