{% extends 'base.html' %} {% block title %}Home{% endblock %} {% set homeLink = 'active' %} {% block content %}

Ask a question

{% for item in combined %}
{% if item.question.from_who %}{{ item.question.from_who }}{% else %}Anonymous{% endif %}
{{ formatRelativeTime(str(item.question.creation_date)) }}

{{ item.question.content }}

{% for answer in item.answers %}

{{ answer.content }}

{% endfor %} {% endblock %} {% block scripts %} {% endblock %}