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

SAR Job Details

ID: {{ sar.id }}

Start Date: {{ sar.start_date }}

Manager: {{ sar.manager }}

Edit Delete
{% for comment in sar.comments %}
{{ comment.user.username }}:

{{ comment.text }}

{% if comment.gpx_data %} {% endif %} {% if current_user.id == comment.user_id or current_user.id == 1 or current_user.id == sar.user_id %} {% endif %}
{% endfor %}
{% endblock %}