{% 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 "View all observations from your source" %} {{ observations_count }}
| {% 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 %} |
|||||
{% blocktrans with start=observations.start_index end=observations.end_index total=observations.paginator.count %} Showing {{ start }} to {{ end }} of {{ total }} observations {% endblocktrans %}