What Did You Do?
User:
Date:
Show
{% if user and date %} {% if error %}
{{ error }}
{% elif changes %}
{{ user }} did some changes on {{ date }}!
{% for app, count in changes.items() %}
{{ count }} changes in {{ app }}
{% endfor %} That's a total of {{ changesets }} changesets. {% else %}
{{ user }} did not do anything on {{ date }}.
{% endif %} {% endif %}