{% extends "admin/base.html" %} {% block title %}User Details - {{ user.username }} - Admin Panel{% endblock %} {% block content %}

User Details: {{ user.username }}

Back to Users
User Information
#{{ user.id }}
{{ user.username }}
{{ user.email }}
{{ user.company if user.company else 'Not specified' }}
{{ 'Active' if user.is_active else 'Inactive' }}
{{ 'Admin' if user.is_admin else 'User' }}
{{ user.last_login.strftime('%B %d, %Y at %H:%M') if user.last_login else 'Never' }}
{{ user.created_at.strftime('%B %d, %Y at %H:%M') }}
User Actions
{% if user.id != current_user.id %} {% endif %}
Quotation History ({{ quotations|length }} total)
{% if quotations %}
{% for quotation in quotations %} {% endfor %}
ID Project Name Mold Type Country Total Cost Created Actions
#{{ quotation.id }} {{ quotation.project_name or 'Unnamed Project' }} {{ quotation.mold_main_type or 'Not specified' }} {{ quotation.mold_shop_country or 'Not specified' }} ${{ "{:,.2f}".format(quotation.total_cost) if quotation.total_cost else 'N/A' }} {{ quotation.created_at.strftime('%m/%d/%Y %H:%M') }}
{% else %}
No quotations found

This user hasn't created any quotations yet.

{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block styles %} {{ super() }} {% endblock %}