33 lines
1.3 KiB
HTML
33 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}
|
|
Games - List View
|
|
{% endblock title %}
|
|
{% block content %}
|
|
<main>
|
|
<h1>Games List</h1>
|
|
<div>
|
|
<a href="{% url 'twitch:games_grid' %}" title="View games as grid">[grid]</a>
|
|
<a href="{% url 'twitch:game_feed' %}" title="RSS feed for all games">[rss]</a>
|
|
<a href="{% url 'twitch:export_games_csv' %}"
|
|
title="Export all games as CSV">[csv]</a>
|
|
<a href="{% url 'twitch:export_games_json' %}"
|
|
title="Export all games as JSON">[json]</a>
|
|
</div>
|
|
{% if games_by_org %}
|
|
{% for organization, games in games_by_org.items %}
|
|
<h2>
|
|
<a href="{% url 'twitch:organization_detail' organization.twitch_id %}">{{ organization.name }}</a>
|
|
</h2>
|
|
<ul>
|
|
{% for item in games %}
|
|
<li>
|
|
<a href="{% url 'twitch:game_detail' item.game.twitch_id %}">{{ item.game.display_name }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|
|
{% else %}
|
|
<p>No games found.</p>
|
|
{% endif %}
|
|
</main>
|
|
{% endblock content %}
|