{% trans "All fields are mandatory" %}
{# The activity form tab that contains name, tags and language #}
{% trans "Specifications" %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.name %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.language %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.tags %}
{% trans 'You can write multi-token keywords by surrounding them with « " » (double quote) symbols.' %}
{# The activity form tab that contains access, state, duration #}
{% trans "Properties" %}
{% if form.access %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.access tooltip=tooltip %}
{% endif %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.reuse %}
{# The activity form tab that contains the object description #}
{% trans "Description" %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.description%}
{% include "learning/_includes/forms/form_group_block.html" with field=form.media %}
{% trans 'You can use the Markdown syntax here.' %}