{% extends 'base.html' %} {% load humanize %} {% block content %}

{{ project }}

Status
{{ project.status }}
{% if project.building_code %}
Building Code
{{ project.building_code }}
{% endif %} {% if project.address %}
Address
{{ project.address.as_p|safe }}
{% endif %} {% if user.is_staff %} {% if project.mail_address %}
Mail Address
{{ project.mail_address.as_p|safe }}
{% endif %} {% if project.ship_address %}
Ship Address
{{ project.ship_address.as_p|safe }}
{% endif %} {% if project.bid_number %}
Bid Number
{{ project.bid_number }}
{% endif %} {% if project.award_date %}
Award Date
{{ project.award_date }}
{% endif %} {% if project.complete_date %}
Completion Date
{{ project.complete_date }}
{% endif %} {% if project.contract_amount %}
Contract Amount
${{ project.contract_amount|intcomma }}
{% endif %} {% if project.actual_amount %}
Closeout Amount
{{ project.actual_amount|intcomma }}
{% endif %} {% if project.client_job_number %}
Client Job Number
{{ project.client_job_number }}
{% endif %} {% if project.client_contract_no %}
Client Contract Number
{{ project.client_contract_no }}
{% endif %} {% if project.notes %}
Notes
{{ project.notes }}
{% endif %} {% endif %}
{% endblock %}