{% load i18n %}

{% trans "Observations" %}

{% trans "View All" %}
{% for observation in data.object_list %} {% empty %} {% endfor %}
{% trans "ID" %} {% trans "Category" %} {% trans "Location" %} {% trans "Status" %} {% trans "Created" %} {% trans "Actions" %}
#{{ observation.id }} {{ observation.category }} {{ observation.location }} {{ observation.get_status_display }} {{ observation.created_at|date:"M d, Y" }} {% trans "View" %}

{% trans "No observations found" %}

{% if data.has_other_pages %}
{% trans "Showing" %} {{ data.start_index }}-{{ data.end_index }} {% trans "of" %} {{ data.paginator.count }} {% trans "observations" %}
{% if data.has_previous %} {% trans "Previous" %} {% endif %} {{ data.number }} {% if data.has_next %} {% trans "Next" %} {% endif %}
{% endif %}