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 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' }}
Total Jobs Posted
Active Contracts
Jobs Completed
Average Rating
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 %}
Insurance Expiry: {{ current_user.insurance_expiry_date.strftime('%d %B %Y') }}
{% endif %}Account Status: {{ current_user.account_status|title }}