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

{% trans 'Observations waiting for review' %}

{% if review_datasets %} {% for dataset in review_datasets %}
{% include 'datasets/ajax/dataset_review_box.html' %}
{% endfor %} {% else %}
{% trans 'No observations are waiting for review.' %}
{% endif %}

{% trans 'Observations that need identification' %}

{% if no_taxon_datasets %} {% for dataset in no_taxon_datasets %}
{% include 'datasets/ajax/dataset_box.html' %}
{% endfor %} {% else %}
{% trans 'No observations need identification.' %}
{% endif %}
{% endblock %}