{{ 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']) }}
{% if (target_user.permission | int) < (active_user.permission | int) %} {% endif %} {% if active_user.is_admin() and not target_user.is_mod() %} {% elif target_user.is_mod() and (target_user.permission | int) < (active_user.permission | int) %} {% endif %} {% endif %} {% endif %}