{% extends "base.html" %} {% load static %} {% block title %} {{ campaign.clean_name }} {% endblock title %} {% block content %} {% if campaign.game %}
{{ campaign.description|linebreaksbr }}
| Benefits | Drop Name | Requirements | Period |
|---|---|---|---|
|
{% for benefit in drop.drop.benefits.all %}
{% if benefit.image_asset_url %}
Awards Badge:
{% endif %}
{% endfor %}
|
{{ drop.drop.name }}
{% for benefit in drop.drop.benefits.all %}
{% if benefit.name != drop.drop.name %}
{{ benefit.name }}
{% endif %}
{% endfor %}
|
{% if drop.drop.required_minutes_watched %}{{ drop.drop.required_minutes_watched }} minutes watched{% endif %} {% if drop.drop.required_subs > 0 %} {% if drop.drop.required_minutes_watched %}and{% endif %} {{ drop.drop.required_subs }} subscriptions required {% endif %} |
{% if drop.local_start %}{{ drop.local_start|date:"M j, Y H:i" }}{% endif %}
{% if drop.local_start and drop.local_end %}-{% endif %}
{% if drop.local_end %}{{ drop.local_end|date:"M j, Y H:i" }}{% endif %}
{{ drop.timezone_name }}
{{ drop.countdown_text }}
|
No drops available for this campaign.
{% endif %} {{ campaign_data|safe }} {% endblock content %}