{% extends "user_profile/user.html" %} {% from "macros.html" import timeago %} {% block profilesection %} {% trans %}activity{% endtrans %} {% endblock %} {% block usercontent %}
{% for act in activities %}
{{ timeago(act.time) }}
{{ act.type }}
{% if act.is_badge %}  {% trans name=act.badge.get_name() %}{{name}}{% endtrans %} {% if act.content_object.post_type == 'question' %} {% set question=act.content_object %} ({% trans %}source{% endtrans %}) {% elif act.content_object.post_type == 'answer' %} {% set answer=act.content_object %} ({% trans %}source{% endtrans %}) {% endif %} {% else %} {{ act.title|escape }} {% if act.summary %}{{ act.summary|escape }}{% endif %} {% endif %}
{% endfor %}
{% endblock %}