STRICT SCOPE - DO NOT EXCEED: File: app/templates/auth/contractor_profile.html Action: CREATE NEW FILE Content: {% extends "base.html" %} {% block title %}Profile - {{ current_user.business_name or current_user.first_name }} - RateRight{% endblock %} {% block content %}

Business Profile

Business Information

Business Name: {{ current_user.business_name or 'Not specified' }}

Owner: {{ current_user.first_name }} {{ current_user.last_name }}

Email: {{ current_user.email }}

Phone: {{ current_user.phone_number }}

ABN: {{ current_user.abn_number }}

GST Registered: {% if current_user.gst_registered %} Yes {% else %} No {% endif %}

Location: {{ current_user.location }}

Primary Trade: {{ current_user.primary_trade or 'General Construction' }}

{{ posted_jobs }}

Total Jobs Posted

{{ active_contracts }}

Active Contracts

{{ current_user.jobs_completed }}

Jobs Completed

{{ "%.1f"|format(current_user.average_rating or 0) }}

Average Rating

Insurance & Compliance

Public Liability Insurance: {% if current_user.public_liability_insurance %} Active {% if current_user.public_liability_amount %} - ${{ "{:,.0f}".format(current_user.public_liability_amount) }} {% endif %} {% else %} Not Verified {% endif %}

Workers Comp Insurance: {% if current_user.workers_comp_insurance %} Active {% else %} Not Verified {% endif %}

{% if current_user.insurance_expiry_date %}

Insurance Expiry: {{ current_user.insurance_expiry_date.strftime('%d %B %Y') }}

{% endif %}

Account Status: {{ current_user.account_status|title }}

Back to Dashboard
{% endblock %}