{% extends "frontend/base.html" %} {% block content %}

User Profile {{ current_user.firstname }} {{ current_user.lastname }}

{% from "frontend/macros/info.html" import Field %} {% from "frontend/macros/form.html" import render_manual %}
Information
{{ Field("Firstname", current_user.firstname) }} {{ Field("Lastname", current_user.lastname) }} {{ Field("Email", current_user.email) }} {{ Field("Registered At", current_user.date_created) }}
{% endblock %}