{% extends "user.html" %} {% comment %} 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 {% endcomment %} {% load extra_tags %} {% load humanize %} {% load i18n %} {% block usercontent %}
{% for response in responses %}
{% gravatar response.user 48 %}
{{ response.user.username }} {{ response.response_type }} ({% diff_date response.timestamp 3 "True" %}):
"{{ response.response_title }}"  {{ response.response_snippet|safe }}
{% endfor %}
{% endblock %}