{% extends "user.html" %} {% import "macros.html" as macros %} {# This template accepts a list of response list they are a generalized form of any response and The following properties of response object are used: timestamp - when it happened user - user who gave response (database object) response_type - type of response response_url - link to the question response_title - title of the question response_snippet - abbreviated content of the response #} {% block usercontent %}
{% for response in responses %}
{{ macros.gravatar(response.user, 48) }}
{{ response.user.username }} {{ response.response_type }} ({{ response.timestamp|diff_date(3, True) }}):
"{{ response.response_title|escape}}"  {{ response.response_snippet }}
{% endfor %}
{% endblock %}