{{ post.content | safe }}
{% from 'common/macros.html' import timestamp %} {% extends 'base.html' %} {% block title %}{{ target_user.username }}'s profile{% endblock %} {% block content %}
This user is a guest. They signed up on {{ timestamp(target_user['created_at']) }}
{% else %}This user signed up on {{ timestamp(target_user['created_at']) }} and was confirmed on {{ timestamp(target_user['confirmed_on']) }}
{% endif %} {% endif %}