{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}{{ account.get_full_name }}{% endblock title %} {% block subtitle %}View the account information.{% endblock subtitle %} {% block content %}

Account Information

Type {{ account.is_superuser|yesno:"Manager,Developer" }}
First Name {{ account.first_name }}
Last Name {{ account.last_name }}
Email {{ account.email }}
Address Line 1 {{ account.address1 }}
Address Line 2 {{ account.address2 }}
City {{ account.city }}
State / Region / Province {{ account.state }}
ZIP / Postal Code {{ account.zipcode }}
Country {{ account.country.name }}
Last Login {{ account.last_login }}

Work Shifts

{% for shift in account.shifts.all %} {% endfor %}
Description Duration Date Project
{{ shift.description }} {{ shift }} {{ shift.date }} {{ shift.project }} {% if request.user.uid == account.uid %} {% endif %}

{% if request.user.is_superuser %} {% if not request.GET.personal %} {% endif %} {% if account.is_superuser %} Make Developer {% else %} Make Manager {% endif %} {% endif %} {% if request.user.uid == account.uid %} Change Password {% endif %} Edit Account Delete Account
{% endblock content %}