{% extends "base.html" %} {% block content %}
2D projection
1D projection
Projection settings
{{ G7Form.hidden_tag() }}
{{ G7Form.phantom_type_field(class="form-control",id='model')}}
{{ G7Form.proj_2d_axis_field.label(class="form-label col") }}
{% for subfield in G7Form.proj_2d_axis_field %}
{{ subfield(id='proj2d_axis',class='form-check-input proj-2d-xyz') }} {{ subfield.label(class='form-check-label') }}
{% endfor %}
{{ G7Form.proj_1d_angle_field.label(class="form-label")}}
{{ G7Form.proj_1d_angle_field(class='form-control',id='proj1d_angle',disabled=true)}}
deg.
Show/hide lines
Tasks
{% for task, task_details in instructions['tasks'].items() %} {% if loop.index == session['game7']['task_completed'] + 1 %} {% set show_text = 'show' %} {% set active_text = 'active' %} {% else %} {% set show_text = '' %} {% set active_text = '' %} {% endif %}
{{ instructions['titles'][loop.index0] }}
{% set task_index = loop.index %}
    {% for step, details in instructions['explorations'][loop.index0].items() %}
  • {{ details }}
  • {% endfor %}
  • {{ task_details }}
{% if task_index == 4 %}
{% for q in range(3) %}
{% endfor %}
{% for p in range(3) %}
{% endfor %}
Randomize!
Submit
{% endif %} {% if task_index == 5 %}
{% for q in range(3) %}
{% endfor %}
{% for p in range(3) %}
{% endfor %}
Randomize!
Submit
{% endif %}
Next

Complete and check all steps to move on.

{% set dnone = '' if session['game7']['task_completed'] >= task_index else 'd-none' %} {% set success_message = 'This step has been completed' if task_index < 4 else 'All steps complete. Congratulations! Now, you can answer the multiple choice questions to earn more stars.' %}

{{ success_message }}

{% endfor %}
Questions
{% endblock %} {% block additional_imports %} {% endblock %}