{% extends "base.html" %} {% block title %} SAR job details {% endblock %} {% block content %}

#{{ sar.id }} : {{ sar.title }}

Created at: {{ sar.created }}

Last updated: {{ sar.updated }}

Status: {{ sar.status }}

Category: {{ sar.category }}

Start Date: {{ sar.start_date }}

Finish Date: {{ sar.finish_date }}

Result: {{ sar.result }}

Manager: {{ sar.manager_id }}

IPP longitude: {{ sar.longitude }}

IPP latitude: {{ sar.latitude }}

Longitude found: {{ sar.longitude_found }}

Latitude found: {{ sar.latitude_found }}

Description: {{ sar.description }}

Description private: {{ sar.description_hidden }}

Edit Delete
{% for comment in sar.comments %}
{{ comment.user.full_name }}: at {{ comment.created }} , updated {{ comment.updated }}

{{ comment.text }}

{% for gpx_track in comments_with_gpx %} {% if gpx_track.comment_id == comment.id %}
  • {{ gpx_track.name }}: {{ gpx_track.comment }}
  • {% endif %} {% endfor %} {% if current_user.id == comment.user_id or current_user.id == 1 or current_user.id == sar.user_id %} {% endif %}
    {% endfor %}
    {% endblock %}