{% extends "base.html" %} {% block content %} {% if user %}
Details for '{{user.username}}'
{% if user.proposals %} {% for p in user.proposals %} {% endfor %}
{{ p.headline }} {{ p.user.username }} {{ p.date_added.strftime('%Y-%m-%d') }}
{% else %} This user did not submit any proposals yet. {% endif %}
{% include 'sidebar.html' %}

{% else %} No user found by that name. {% endif %} {% endblock %}