{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Projects

{% for item in projects %} {% endfor %}
ID Title Last exception Events
{{ item.id }} {{ item.title }} {% if item.last_group %} {{ item.last_group.times_seen }} {{ item.last_group.type_exc.0|truncatechars:70 }}{{ item.last_group.type_exc.1|yesno:": ,," }}{{ item.last_group.type_exc.1|truncatechars:255 }}
{{ item.last_group.last_seen|date:"d b H:i:s" }}
{% else %}
No events registered yet
{% endif %}
{{ item.event_count }}
{% endblock %}