{% extends "base-apply.html" %} {% load contract_tools %} {% load static %} {% load wagtailcore_tags %} {% block title %}{{ object.title }}{% endblock %} {% block body_class %}{% endblock %} {% block content %}

{{ object.title }}

{% if public_page %} {{ object.submission.page }} {% else %} {{ object.submission.page }} {% endif %} {% if request.user.is_apply_staff and object.submission.round %} {{ object.submission.round }} {% else %} {{ object.submission.round }} {% endif %} Lead: {{ object.lead }}
{% for status, text in statuses %} {% if forloop.counter0 == current_status_index %} {% include "funds/includes/status_bar_item.html" with is_current=True is_complete=False label=text %} {% elif forloop.counter0 < current_status_index %} {% include "funds/includes/status_bar_item.html" with is_current=False is_complete=True label=text %} {% else %} {% include "funds/includes/status_bar_item.html" with is_current=False is_complete=False label=text %} {% endif %} {% endfor %}
{{ object.get_status_display }}
{% block notifications %} {% endblock %}

Project Information

Proposed start date

{{ object.proposed_start|date:"j F Y"|default:"-" }}

Project Proposed end date

{{ object.proposed_end|date:"j F Y"|default:"-" }}

Legal name

{{ object.contact_legal_name|default:"-" }}

Email
{% if object.contact_email %} {{ object.contact_email }} {% else %} - {% endif %}
Show more
Address

{{ object.get_address_display|default:"-"}}

Phone

{{ object.phone|default:"-" }}

Value

${{ object.value|default:"-" }}

{% if object.can_request_funding %}
{% include "application_projects/includes/funding_block.html" %} {% include "application_projects/includes/payment_requests.html" %}
{% endif %} {% if object.is_in_progress %}
{% include "application_projects/includes/reports.html" %}
{% endif %} {% if not object.is_in_progress %} {% include "application_projects/includes/supporting_documents.html" %} {% endif %}
{# Tab 2 #}
{% include "activity/include/comment_form.html" %} {% include "activity/include/comment_list.html" with editable=True %}
{# Tab 3 #}
{% include "activity/include/action_list.html" %}
{% endblock content %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}