{% extends 'layout.html' %} {% block title %}Profile{% endblock %} {% block content %}

Profile

Username:

{{ account.username }}

Account Type:

{{ "Admin" if account.is_admin() else "User" }}

{% endblock %}