{% extends 'base.html.j2' %}
{% block title %}
Viewing {{ account_data.username }}
{% endblock %}
{% block content_before %}
Viewing {{ account_data.username }}
{% if current_user.id == account_data.id %}
Hey, this is you!
{% endif %}
{% endblock %}
{% block content %}
{% include 'partials/_account.html.j2' %}
{% endblock content %}
{% block content_after %}