{% extends "layouts/source_user_base.html" %} {% load i18n %} {% block title %}{% trans "My Observations" %} - {{ source.get_localized_name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "My Observations" %}

{% trans "View all observations from your source" %} {{ observations_count }}

{% if source_user.can_create_observations %} {% trans "Create Observation" %} {% endif %}

{% trans "Filters" %}

{% trans "All Observations" %} {{ observations_count }}

{% for obs in observations %} {% empty %} {% endfor %}
{% trans "Tracking Code" %} {% trans "Category" %} {% trans "Description" %} {% trans "Location" %} {% trans "Status" %} {% trans "Created" %}
{{ obs.tracking_code }} {{ obs.category|default:"-" }} {{ obs.description|truncatechars:45 }} {{ obs.location_text|default:"-" }} {% if obs.status == 'new' %} {% trans "New" %} {% elif obs.status == 'triaged' %} {% trans "Triaged" %} {% elif obs.status == 'assigned' %} {% trans "Assigned" %} {% elif obs.status == 'in_progress' %} {% trans "In Progress" %} {% elif obs.status == 'resolved' %} {% trans "Resolved" %} {% else %} {{ obs.get_status_display }} {% endif %} {{ obs.created_at|date:"M d, Y" }}

{% trans "No observations found" %}

{% if source_user.can_create_observations %} {% trans "Submit your first observation" %} {% endif %}
{% if observations.has_other_pages %}

{% blocktrans with start=observations.start_index end=observations.end_index total=observations.paginator.count %} Showing {{ start }} to {{ end }} of {{ total }} observations {% endblocktrans %}

{% if observations.has_previous %} {% trans "Previous" %} {% endif %} {% blocktrans with num=observations.number total=observations.paginator.num_pages %}Page {{ num }} of {{ total }}{% endblocktrans %} {% if observations.has_next %} {% trans "Next" %} {% endif %}
{% endif %}
{% endblock %}