Allow subscribe to orgs

This commit is contained in:
Joakim Hellsén 2025-08-02 05:45:20 +02:00
commit 4af2b02a01
10 changed files with 190 additions and 14 deletions

View file

@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block title %}
Games
{% endblock title %}
{% block content %}
<h1>Organizations</h1>
{% if orgs %}
<ul>
{% for organization in orgs %}
<li>
<a href="{% url 'twitch:org_detail' organization.id %}">{{ organization.name }}</a>
</li>
{% endfor %}
</ul>
{% else %}
No games found.
{% endif %}
{% endblock content %}