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

{{ challenge.name }}

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

{{ challenge.description | markdownify }}

{% if challenge.creator.profile.contact_info %}

{{ challenge.creator.profile.contact_info }}

{% endif %} {% if challenge.creator.email %}
email {{ challenge.creator.email }}

{% endif %} {% if challenge.creator.profile.phone_number %}
phone {{ challenge.creator.profile.phone_number }}
{% endif %}
  • Author

    {{ challenge.creator.username }}

{% if challenge.tags|length > 0 %}
  • Tags
  • {% for tag in challenge.tags.all %}
  • {{ tag.name }}
  • {% endfor %}
{% endif %} {% if challenge.tags|length > 0 %}
  • Tags
  • {% for tag in challenge.tags.all %}
  • {{ tag.name }}
  • {% endfor %}
{% endif %}
{% endblock %}