{% load c3assemblies %} {% load i18n %} {% load humanize %} {% gen_rand_str as alc_ident %}
{% if add_comment_url %} {% endif %}
{% trans "ActivityLogEntries" %}
{% for entry in object.logentries.all %}
{% 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 %}
{% endfor %}
{% if add_comment_url %} {% endif %}