{% extends "base.html" %} {% load url %} {% load crispy_forms_tags %} {% load static %} {% load bleach %} {% load user_profile_link from profiles %} {% load naturaldelta %} {% block title %}Challenge request: {{ object.title }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if object.status == object.ChallengeRequestStatusChoices.ACCEPTED %}
Accepted
{% elif object.status == object.ChallengeRequestStatusChoices.REJECTED %}
Rejected
{% endif %}

[{{ object.short_name }}] {{ object.title }}


Challenge request from {{ object.creator|user_profile_link }}
{{ object.contact_email }}
Submitted on {{ object.created }}
{% if object.structured_challenge_submission_doi %} Challenge submission form available at {{ object.structured_challenge_submission_doi.url }}
{% endif %} {% if object.structured_challenge_submission_form %} Challenge submission form PDF {% endif %} {% if not object.structured_challenge_submission_form and not object.structured_challenge_submission_doi %} No challenge submission form available {% endif %}
{% for field, value in fields.items %} {% if value %} {% endif %} {% endfor %} {% if object.long_term_commitment %} {% elif object.long_term_commitment == None %} {% else %} {% endif %} {% if object.data_license %} {% elif object.data_license == None %} {% else %} {% endif %} {% if object.comments %} {% endif %}
{{ field|title }} {{ value|linebreaks }}
Long-term support The organizers agree to support this challenge for up to 5 years.
Long-term support Unknown
Long-term support The organizers do not agree to support this challenge for up to 5 years for the following reason:
{{ object.long_term_commitment_extra }}
Public data license The organizers agree to publish their public data set under a CC-BY license.
Public data license Unknown
Public data license The organizers do not agree to publish their public data set under a CC-BY license for the following reason:
{{ object.data_license_extra }}
Organizer's budget for hosting challenge {{ object.budget_for_hosting_challenge }} €
Comments from organizers
{{ object.comments|linebreaks }}

{% if object.budget %}

Budget estimate

{% include "challenges/partials/budget_table.html" with object=object %}
{% endif %} {% endblock %} {% block script %} {{ block.super }} {% endblock %}