{% extends "base.html" %}
{% block title %}
{{ game.display_name }}
{% endblock title %}
{% block content %}
{{ game.display_name }}
{% if owner %}
{{ owner.name }}
{% endif %}
{% if user.is_authenticated %}
{% else %}
Login to subscribe!
{% endif %}
{% if active_campaigns %}
Active Campaigns
{% endif %}
{% if upcoming_campaigns %}
Upcoming Campaigns
{% endif %}
{% if expired_campaigns %}
Past Campaigns
{% endif %}
{% if not active_campaigns and not upcoming_campaigns and not expired_campaigns %}
No campaigns found for this game.
{% endif %}
{{ game_data }}
{% endblock content %}