{% extends 'base.html' %} {% block title %} | Sapelli: {{ sapelli_project.geokey_project.name }} - Log files{% endblock %} {% block main %} {% include 'sapelli/snippets/header.html' %}
{% include 'sapelli/snippets/navigation.html' %}

Log files {% if logs.paginator.count > 1 %} Download {% if date_from or date_to %}filtered{% else %}all{% endif %} {% endif %}

{% csrf_token %}
{% for log in logs %} {% if forloop.first %}
    {% endif %}
  • {{ log.name }}
    Created {{ log.created_at|timesince }} ago | Uploaded {{ log.uploaded_at|timesince }} ago by {% if log.creator.display_name == 'AnonymousUser' %}Anonymous User{% else %}{{ log.creator.display_name }}{% endif %}
  • {% if forloop.last %}
{% endif %} {% empty %}
{% if date_from or date_to %}

We couldn't find any logs within this date range.

{% else %}

We couldn't find any logs uploaded for this project.

{% endif %}
{% endfor %}
{% endblock %} {% block libraries %} {% endblock %}