{% extends "base.html" %} {% block title %}Rate Contract - {{ contract.job.title }}{% endblock %} {% block content %}

Rate Contract Performance

{{ contract.status.replace('_', ' ').title() }}
Contract Summary

Job: {{ contract.job.title }}

Location: {{ contract.job.location }}

Rate: ${{ "{:,.2f}".format(contract.agreed_rate) }}

{% if current_user.role == 'contractor' %}Worker{% else %}Contractor{% endif %}: {% if current_user.role == 'contractor' %} {{ contract.worker.first_name }} {{ contract.worker.last_name }} {% else %} {{ contract.contractor.first_name }} {{ contract.contractor.last_name }} {% endif %}

Duration: {{ contract.start_date.strftime('%d/%m/%Y') }} - {{ contract.end_date.strftime('%d/%m/%Y') }}

Submit Your Rating
Click stars to rate (1-5)
Optional but helpful for future reference
Back to Contract
{% endblock %} ~/workspace$