ttvdrops/templates/twitch/dashboard.html

32 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% load static %}
{% block title %}
Dashboard
{% endblock title %}
{% block content %}
{% if campaigns_by_org_game %}
{% for org_id, org_data in campaigns_by_org_game.items %}
{% for game_id, game_data in org_data.games.items %}
<h1>
<a href="{% url 'twitch:game_detail' game_id %}">{{ game_data.name }}</a>
</h1>
{% for campaign in game_data.campaigns %}
<h2>{{ campaign.clean_name }}</h2>
<p>
<h4>
<a href="{% url 'twitch:campaign_detail' campaign.id %}">
<img height="160"
width="160"
src="{{ campaign.image_url }}"
alt="{{ campaign.name }}">
</a>
</h4>
<span title="{{ campaign.end_at|date:'c' }}">Ends in {{ campaign.end_at|timeuntil }}</span>
</p>
{% endfor %}
{% endfor %}
{% endfor %}
{% else %}
No active campaigns at the moment.
{% endif %}
{% endblock content %}