{% extends "base.html" %} {% block title %}User{% endblock %} {% block content %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% endif %} {% endwith %}
Challenges

Browse data challenges by data type, here.

{% if problems|length > 0 %}

User status

  • signed up
  • waiting for approval
  • not signed up

Event status

  • closed
  • competitive phase
  • collaborative phase
{% endif %}
{% for problem in problems %}
  • {{ problem.title }}
      {% for event in problem.events %} {% if event.is_public %} {% if event.state_user == 'waiting' %}
    • {% elif event.state_user == 'signed' %}
    • {% elif event.state_user == 'not_signed' %}
    • {% endif %} {% if event.state == 'close' %}
    • {% elif event.state == 'collab' %}
    • {% elif event.state == 'competitive' %}
    • {% endif %} {{ event.title }}, {{ event.n_participants }} participants, {{ event.n_submissions }} submissions, Plot score vs time
    • {% endif %} {% endfor %}
    {% endfor %}
  • {% endblock %} {% block scripts %} {% endblock %}