{% extends "base.html" %} {% load url %} {% load crispy_forms_tags %} {% load static %} {% load naturaldelta %} {% load user_profile_link from profiles %} {% block title %}Challenge requests{% endblock %} {% block breadcrumbs %}
{% endblock %} {% block content %}| Acronym | Creator | Submission date | Status | Contact | |||||
|---|---|---|---|---|---|---|---|---|---|
| Details | {{ object.short_name }} | {{ object.creator|user_profile_link }} | {% if object.status == object.ChallengeRequestStatusChoices.ACCEPTED %}{{ object.created|date:'F j, Y' }} | Accepted | {% elif object.status == object.ChallengeRequestStatusChoices.REJECTED %}{{ object.created|date:'F j, Y' }} | Rejected | {% else %}{{ object.created|date:'F j, Y' }} | Accept or decline | {% endif %}{{ object.contact_email }} |