{% extends "base.html" %} {% block content %}
Information {% for game in games %} {{ game.display_name }} {% endfor %}

Information

This site allows users to subscribe to Twitch drops. You can either get notified when the website finds a new drop on the Twitch site or get notified when the drops begin to be farmable.

You can add a Discord Webhook here.

Webhooks

{% for webhook in webhooks %}
{{ webhook.name }} {{ webhook.name }}

{% endfor %}
{% for game in games %}
{{ game.display_name }}

{{ game.display_name }}

{% for webhook in webhooks %}
{{ webhook.name }} {{ webhook.name }}
{% endfor %}
{% for campaign in game.campaigns %} {% if not forloop.first %}
{% endif %}

{{ campaign.name }}

Ends in: {{ campaign.end_at|timeuntil }}

{% if campaign.description != campaign.name %} {% if campaign.description|length > 100 %}

{{ campaign.description }}

{% else %}

{{ campaign.description }}

{% endif %} {% endif %}
{% for drop in campaign.drops %}
{{ drop.name }} drop image {{ drop.name }}
{% endfor %}
{% endfor %}
{% endfor %}
{% endblock content %}