{% load humanize %}
{% if latest_note and latest_note.pk == entry.pk %}{% endif %}
{{ entry.timestamp|naturaltime }} {{ entry.user.username }} {{ entry.get_kind_display }}
{% if entry.changes %}
{% for k, v in entry.changes.items %} {% if k not in filtered_logentry_changes_keys %}
{{ k }}:
{% if v|is_dict %} {{ v.old }} {{ v.new }} {% else %} {{ v }} {% endif %}
{% endif %} {% endfor %}
{% endif %} {% if entry.comment %}
{{ entry.comment }}
{% endif %}