Allow subscribe to orgs
This commit is contained in:
parent
fabc9d23f6
commit
4af2b02a01
10 changed files with 190 additions and 14 deletions
18
templates/twitch/org_list.html
Normal file
18
templates/twitch/org_list.html
Normal 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue