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

Challenges

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

{% if challenge.blurb %}{{ challenge.blurb }}{% else %}{{ challenge.description|slice:":500" }}{% endif %}

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