{{ survey.total_score|floatformat:1 }}/5.0
{% if survey.is_negative %}
{% endif %}
{% else %}
-
{% endif %}
{% if survey.sent_at %}
{{ survey.sent_at|date:"M d, Y H:i" }}
{% else %}
-
{% endif %}
{% if survey.completed_at %}
{{ survey.completed_at|date:"M d, Y H:i" }}
{% else %}
-
{% endif %}
{% empty %}
{% trans "No surveys found" %}
{% endfor %}
{% if surveys.has_other_pages %}
{% trans "Showing" %} {{ surveys.start_index }}-{{ surveys.end_index }} {% trans "of" %} {{ surveys.paginator.count }} {% trans "entries" %}
{% if surveys.has_previous %}
{% else %}
{% endif %}
{% for num in surveys.paginator.page_range %}
{% if num == surveys.number %}
{{ num }}
{% elif num > surveys.number|add:'-3' and num < surveys.number|add:'3' %}
{{ num }}
{% elif num == 1 or num == surveys.paginator.num_pages %}
{{ num }}
{% elif num == surveys.number|add:'-3' or num == surveys.number|add:'3' %}
...
{% endif %}
{% endfor %}
{% if surveys.has_next %}
{% else %}
{% endif %}