{% extends "base.html" %} {% block title %}Challenges{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Weekly Challenges

{% if challenges|length == 0 %}

No challenges posted yet.

{% else %}
{% for ch in challenges %}
{{ ch.title }}
{{ ch.status }} {% if ch.reward %}Reward: {{ ch.reward }}{% endif %}
{{ ch.description }}
{% if ch.tags %}
{% for t in ch.tags %} #{{ t }} {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}