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

{% trans 'Expert Review' %}

{% if review_success %}

{% trans 'Thank you for your review' %}

{% if validation_result == 'is_valid' %} {% trans 'You marked this observation as valid.' %} {% elif validation_result == 'is_invalid' %} {% trans 'You marked this observation as invalid.' %} {% endif %}
{% else %}

{% trans 'Observation' %} #{{ dataset.id }}

{% with form=observation_form %} {% include 'datasets/validation/ajax/dataset_form.html' %} {% endwith %}

{% trans 'Your review' %}

{% trans 'Before submitting your review, please try to correct the observation if it contains errors. If you have been able to correct the data, mark the observation as valid.' %}
{% csrf_token %} {% render_bootstrap_form form %}
{% endif %}
{% endblock %}