{% extends 'base.html' %} {% block content %}

Challenges

{% for challenge in challenges %}
{{ challenge.name }}

{{ challenge.description }}

{% for tag in challenge.tags.all %}
{{ tag.name }}
{% endfor %}

{% endfor %}
{% endblock %}