{% extends "gymkhana.html" %} {% block content %}

Event Details

Event Details
  • Title: {{ event.title }} {% if manager %} - Manage by: {{ manager.user.username }} {% endif %}
  • Unique Identifier: {{ event.id }}
  • Place: {{ event.place }}
  • Celebration: {{ event.celebration }}
  • Challenges: {{ num_proofs }} Challenge{{ num_proofs|pluralize }}
  • Teams: {{ num_teams }} Participant Team{{ num_teams|pluralize }}
  • Welcome Text: {{ event.welcome_text }}
  • Goodbye Text: {{ event.goodbye_text }}
{% if isAdmin %}
{% endif %}
{% if isAdmin %}
Adding Challenges






Textual Photo Location


Yes No






Yes No









Yes No


















{% if proofs %} {% endif %}
{% if proofs %}
Listing Challenges
    {% for proof in proofs %}
  1. Challenge #{{ proof.number }} (identifier: {{ proof.id }} - number: {{ proof.number}}) - Max Score: {{ proof.max_score }}
    • Challenge: {{ proof.challenge }}
    • {% ifequal proof.proof_type 1 %}
    • Textual - Augmented Reality: {% if proof.augmented_reality %}Yes{% else %}No{% endif %}
    • Possible Solutions:
        {% for solution in proof.solution_set.all|dictsort:"id" %}
      • {{ solution.possible_solution }}
      • {% endfor %}
    • {% endifequal %}
    • {% if proof.clue_set.all %} Clues:
        {% for clue in proof.clue_set.all|dictsort:"number" %}
      • #{{ clue.number }}: {{ clue.help }} (cost: {{ clue.cost }} points)
      • {% endfor %}
      {% else %} No clues for this challenge. {% endif %}
    • Response must be Correct to Continue: {{ proof.is_stop }}
    • Challenge Can be Skipped: {{ proof.can_jump }}
    • Type: {% ifequal proof.proof_type 1 %}Textual{% endifequal %} {% ifequal proof.proof_type 2 %}Photo{% endifequal %} {% ifequal proof.proof_type 3 %} Location (target: latitude {{ proof.target_place.y }}; longitude {{ proof.target_place.x }}) {% endifequal %}
    • {% ifequal proof.proof_type 3 %}
    • Min Distance to Target Place: {{ proof.distance_to_target_place }} meter{{ proof.distance_to_target_place|pluralize }}
    • Mark Target Place to Team: {% if proof.mark_place %}Yes{% else %}No{% endif %}
    • {% endifequal %}
    • Next Challenge Identifier: {{ proof.next_proof_id }}
  2. {% endfor %}
{% endif %}
Adding Teams
{% endif %} {% if teams %}
Listing Teams
    {% for team in teams %}
  • Team Name: {{ team.group.name }}
    • Event: {{ event.title }}
    • {% for first_proof in first_proofs %} {% ifequal team first_proof.team %} {% ifequal event first_proof.event %}
    • First Challenge: #{{ first_proof.first_proof.number }} (id: {{ first_proof.first_proof.id }})
    • {% endifequal %} {% endifequal %} {% endfor %} {% if isAdmin %} {% if proofs %}
    • Change First Challenge:
    • {% endif %} {% endif %}
  • {% endfor %}
{% if isAdmin %}
Adding Team Members






{% endif %} {% endif %} {% endblock %} {% block java_script %} {% endblock %}