{% extends 'bootstrap_base.html' %} {% from 'bootstrap/form.html' import render_field %} {% from 'bootstrap/form.html' import render_form %} {% block header %}

Task {{task_index | safe}} / {{task_total | safe}}

Given an image, you are asked to identify the specie of the bird given in the image from several candidates.

{% endblock %} {% block content %}
Responsive image
{% macro _hz_form_wrap(horizontal_columns, form_type, add_group=False, required=False) %} {% if form_type == "horizontal" %} {% if add_group %}
{% endif %}
{% endif %} {{ caller() }} {% endmacro %} {% macro render_radio_field(field, form_type="basic", horizontal_columns=('lg', 2, 10), button_map={}, button_style='', button_size='') %} {% if field.flags.required and not required in kwargs %} {% set kwargs = dict(required=True, **kwargs) %} {% endif %} {% set extra_classes = ' ' + field.render_kw.class if field.render_kw.class else '' %}
{{ field.label(class="form-control-label")|safe }}
{#% call _hz_form_wrap(horizontal_columns, form_type, True, required=required) %#} {% for item in field -%}
{{ item(class_="form-check-input")|safe }} {{ item.label(class="form-check-label", for=item.id)|safe }}
{% endfor %} {#% endcall %#} {%- if field.errors %} {%- for error in field.errors %}
{{ error }}
{%- endfor %} {%- elif field.description -%} {{ field.description|safe }} {%- endif %}
{% endmacro %}
{{form.hidden_tag()}} {% if advice != 'None' %}

AI Advice:

{{advice | safe}}

{% endif %} {% if explanation_sent != 'None' %}

Explanation:

{{explanation_sent | safe}}

{% endif %}

Hints for task:

  • Goldfinch
  • American Goldfinch
    yellow body (belly, breast, throat, side, back); black head; orange beak; black and white wing; black and white tail.
    Lesser Goldfinch
    yellow body (belly, breast, throat, side), black body (back); black head; grey beak; black and white AND wing; (black and white OR yellow) tail tail.
    Lawrence Goldfinch
    yellow body (belly, breast), (black OR grey) body (throat), grey body (side, back); black AND/OR grey head, (black OR grey) head; grey beak; (black, grey, white and yellow) wing; grey tail, (black, white and grey) tail.
  • Woodpecker
  • Gila Woodpecker
    brown body (breast, belly, throat, side, back); brown head, red head; black and white wing; black and white tail.
    Downy Woodpecker
    black and white body (back), white body (belly, breast, throat, side); (white, black and red) head; grey beak; black wing, black and white wing; black tail, black and white tail.
    Downy Woodpecker
    black and white body (back), white body (belly, breast, throat, side); (white, black and red) head; grey beak; black wing, black and white wing; black and white tail.

Task:

{{ render_field(form.question) }}
{% endblock %}