{% extends 'app_admin/base.html' %} {% load i18n static localcosmos_tags %} {% block content %}

{% trans 'Observation Validation Routine' %}

{% trans 'Defining an Observation Validation Routine helps to improve the quality of your collected data. You can set specific steps for specific taxa. For example, you might want to have an expert to look at reports of rare species and have him check the datasets photo.' %}

{% trans 'Step 0:' %}
{% trans 'User saves Dataset' %}
{% trans 'after successfully filling out an observation form without errors' %}
{% for validation_step in dataset_validation_routine %}
{% blocktrans with position=validation_step.position %}Step {{ position }}: {% endblocktrans %}
{{ validation_step.verbose_name }}
{{ validation_step.description }}
{% if validation_step.taxonomic_restrictions.all %}
{% trans 'Applies to:' %} {% for restriction in validation_step.taxonomic_restrictions.all %} {{ restriction.taxon_latname }}, {% endfor %}
{% endif %}
{% endfor %}
{% trans 'Final Step:' %}
{% trans 'Dataset is marked as valid' %}


{% trans 'Available additional validation steps' %}

{% for validation_class in available_validation_classes %}
{{ validation_class.verbose_name }}
{{ validation_class.description }}
{% endfor %}
{% endblock %}