{% extends "base.html" %} {% load static %} {% block title %} {{ campaign.clean_name }} {% endblock title %} {% block content %}
{# TODO: Link to organization #} {{ campaign.owner.name }}
{% if campaign.image_url %}{{ campaign.description }}
Start: {{ campaign.start_at }}
End: {{ campaign.end_at }}
{% if campaign.details_url %} {# TODO: Archive this URL automatically #} {% endif %} {% if campaign.account_link_url %} {# TODO: Archive this URL automatically #} {% endif %}{% if campaign.is_account_connected %} Connected {% else %} Not Connected {% endif %}
{% endif %} {% if drops %}| Image | Name | Requirements | Availability | ||
|---|---|---|---|---|---|
{% for benefit in drop.benefits.all %}
{% if benefit.image_asset_url %}
{% endif %}
{% endfor %}
|
{{ drop.name }} | {{ drop.required_minutes_watched }} minutes watched {% if drop.required_subs > 0 %}and {{ drop.required_subs }} subscriptions required{% endif %} | {{ drop.start_at }} - {{ drop.end_at }} | ||
| No drops found for this campaign. | |||||
No drops available for this campaign.
{% endif %} {% endblock content %}