{% extends "issues/base.html" %} {% load issues %} {% block tab_content %} {% comment %}
# | ID | Timestamp | Title | Release | Environment |
{{ event.digest_order }} | {# how useful is this really? #} {{ event.id|truncatechars:9 }} | {{ event.timestamp|date:"j M G:i:s" }}.{{ event.timestamp|date:"u"|slice:":3" }} | {% comment %} In the current setup, event title wraps to the next line if needed, there's no clipping. I tried to get 'just use dots' to work for that, but I did not get that to work in a table. Perhaps it's actually anti-thetical to the table layout. Perhaps if we used a flexbox layout, it would work better. Anyway, overflow-to-next-line is also fine (at least for now) {% endcomment %}{{ event.title }} | {{ event.release|shortsha }} | {{ event.environment|truncatechars:30 }} |