{% extends "base.html" %} {% set active_page = "seasons" %} {% block title %}Seasons {{ super() }}{% endblock %} {% block page %} {% if g.is_editor %} {% endif %} {% if not model.seasons %} There are no seasons. {% else %} {# Show #} {% if g.is_editor %} {# Edit #} {% endif %} {% for item in model.seasons %} {% if g.is_editor %} {% endif %} {% endfor %}
# Game Season Description Started At Ended AtViewEditor
{{ item.code }} {{ item.game }} {{ item.description or "No Description" }} {{ item.start }} {{ item.end or "Ongoing" }} Episode
{% endif %} {% endblock %}