{% extends "base.html" %} {% from "components/alert.html" import Alert %} {% block content %}
{% if next is not none %} {{ Alert('You must complete your profile', message='

Before continuing, you must complete your profile

', level='info' ) }} {% endif %} {% if form.errors %} {{ Alert('There were some errors', message="

Please see below.

", level='error' ) }} {% endif %} {% if updated %} {{ Alert('User information updated.', level='success') }} {% endif %}

{{ user.first_name }} {{ user.last_name }}
DOD ID: {{ user.dod_id }}
Edit user details

{% set form_action = url_for('users.update_user', next=next) %} {% include "fragments/edit_user_form.html" %}
{% endblock %}