graphite events
{% if events %}
when
what
tags
{% for event in events %}
{{event.when|date:"H:i:s D d M Y" }}
{{event.what}}
{{event.tags}}
{% endfor %} {% else %}
No events. Add events using
the admin interface
or by posting (eg, curl -X POST http://localhost:8000{{slash}}events/ -d '{"what": "Something Interesting", "tags" : "tag1 "}') {% endif %}