{% trans "All fields are mandatory" %}
{# The course form tab that contains name, tags and language #}
{% trans "Specifications" %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.name %}
{% if form.language %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.language %}
{% endif %}
{% 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 resource form tab that contains access, state, duration #}
{% trans "Properties" %}
{% if form.access %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.access %}
{% endif %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.state %}
{% if form.registration_enabled %}
{% include "learning/_includes/forms/form_group_block.html" with field=form.registration_enabled boolean=True %}
{% endif %}
{# The course form tab that contains the object description #}
{% trans "Description" %}
{{ form.media }}
{% 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.' %}