{% extends 'base.html.twig' %}
{% block title %}Progress Report{% endblock %}
{% block body %}
<div class="container overflow-hidden ">
<div class="row align-items-center justify-content-center min-vh-100 my-5 py-5">
<div class="col-sm-12 align-items-center d-block">
{{ form_start(form, {'attr': {'id': 'progress_report_form'}}) }}
<div class="row">
<div class="col-sm-12">
<a href="/">
<img src="/build/images/logo.png" class="logo mb-3"/>
</a>
<h1 class="h3 mb-2 fw-bold">Progress Report</h1>
</div>
</div>
{% for message in app.flashes('notice') %}
<div class="alert alert-danger mt-4 mb-4" role="alert">{{ message }}</div>
{% endfor %}
{% for message in app.flashes('success') %}
<div class="alert alert-success mt-4 mb-4" role="alert">{{ message }}</div>
{% endfor %}
<ul class="error-msg alert alert-danger error-msgs mt-4 mb-4 ps-4 fw-bold" style="display: none;">
</ul>
<div class="row mt-4">
<div class="col-sm-12 form-group">
<div class="d-flex justify-content-between">
<div>
<h4 class="fw-bold">
{{ project.title }}
</h4>
</div>
{% if progressReport.status != "completed" %}
<button id="save-draft" class="rounded-pill gap-2 px-4 btn btn-lg btn-primary text-uppercase" type="submit" style="max-height: 45px;">
Save Draft Update
</button>
{% endif %}
</div>
</div>
</div>
<div class="tab">
<div class="row mb-3 mt-4">
<div class="col-sm-12">
<div class="mb-3 pb-3 fw-bold">
{% if progressReportIntroCopy %}
{{ progressReportIntroCopy | raw }}
{% else %}
<p>Our mandatory annual filmmaker progress report is a critical opportunity for Documentary Australia to gain insights into the documentary projects that are approved for fiscal sponsorship and published on our website. It allows us to celebrate progress and achievements, ensures that our website is up to date, supports our evaluation and enables us to share current information about projects with our networks.</p>
<p>Please note: You have FOUR weeks to complete this progress report. This is a mandatory requirement listed in our <a href="https://documentaryaustralia.com.au/terms-and-conditions/" target="_blank">Terms & Conditions</a> and agreed upon in the filmmaker Grant Agreement.</p>
{% endif %}
</div>
<h5 class="fw-bold text-uppercase">Project Detail Review</h5>
</div>
</div>
<div class="row mb-3">
<div class="col-sm-12 form-group inline-checkbox">
{% if project.wordpressStatus == 'publish' %}
<b>
Click <a href="{{ project.wordpressUrl }}" target="_blank"> here</a> to go to your front project page.
</b>
<br/>
{% endif %}
<b>
Click
<a href="{{ ea_url().setController('App\\Controller\\Admin\\FilmProjectEditCrudController') .setAction('edit') .setEntityId(project.id) .set('isOpenedLink', "true") }}" target="_blank">here</a>
to review your current project information.
</b>
</div>
</div>
<div class="form-content mb-4">
<div class="row mb-2">
<div class="col-sm-12 form-group inline-checkbox">
<label for="isUptodate" class="fw-bold">Please check your current project details are correct, and update if not. <span class="text-danger">*</span></label>
{{ form_widget(form.isUptodate) }}
<p class="fw-bold messages"></p>
</div>
</div>
</div>
</div>
<div class="tab" style="visibility: hidden; max-height: 0;">
<div class="form-content">
<div class="row mb-4">
<div class="col-sm-12 form-group">
<label for="projectUpdate" class="fw-bold">Please provide an update on your project, including any progress and achievements in that last year.<span class="text-danger">*</span></label>
<label for="projectUpdate" class="fst-italic">NOTE: This update will be shared publicly on your project ‘Updates’ tab so please write your summary accordingly.</label>
{{ form_widget(form.projectUpdate, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group inline-checkbox">
<label for="projectUpdateTags" class="fw-bold">Project update tags:<span class="text-danger">*</span></label>
{{ form_widget(form.projectUpdateTags, {'attr': {'class': 'form-control tomselected'}}) }}
<p class="fw-bold messages"></p>
</div>
{# <div class="col-sm-12 form-group inline-checkbox">
<label for="isStillFundraising" class="fw-bold">Are you still fundraising for your film or impact campaign?</label>
{{ form_widget(form.isStillFundraising) }}
<p class="fw-bold messages"></p>
</div> #}
<div class="col-sm-12 form-group inline-checkbox">
<label for="fundraisingStatus" class="fw-bold">Are you still fundraising for your film or impact campaign? <span class="text-danger">*</span></label>
{{ form_widget(form.fundraisingStatus) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">
<label for="currentStage" class="fw-bold">{{ form_label(form.currentStage) | raw }}</label>
{{ form_widget(form.currentStage) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">
<label for="projectActiveStatus" class="fw-bold">Would you like your project to: <span class="text-danger">*</span></label>
{{ form_widget(form.projectActiveStatus) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group d-none">
<label for="filmWebsiteUrl" class="fw-bold">{{ form_label(form.filmWebsiteUrl)}}</label>
{{ form_widget(form.filmWebsiteUrl) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">
<label for="isDocument" class="fw-bold">Do you have any new reports or assets you would like to share? Including impact reports, digital assets, EPK or other updates?</label>
<p class="mb-0">NOTE: please only share documents you are happy to be made public</p>
{{ form_widget(form.isDocument) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">
<label for="projectActiveStatus" class="fw-bold mb-0">Upload documents here:</label>
<p class="fw-normal mb-0">You can upload files up to a maximum of 20MB.</p>
<p class="fw-normal">NOTE: Please note that any uploaded files will not be retained upon clicking 'Save Draft' and will be discarded.</p>
<ul>
{% for file in progressReport.filmProjectProgressReportFiles %}
{% set fileName = file.fileName %}
{% if file.originalName %}
{% set fileName = file.originalName %}
{% endif %}
<li><a href="/uploads/progress_reports/{{ file.fileName }}" target="_blank">{{ fileName }}</a></li>
{% endfor %}
</ul>
{{ form_widget(form.files) }}
<p class="fw-normal mb-0"><b>Only accepts image and pdf.</b></p>
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">
<label for="projectActiveStatus" class="fw-bold">Share a link to Youtube or Vimeo here:</label>
{{ form_widget(form.onlineDocumentLink) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group d-none">
<label for="projectActiveStatus" class="fw-bold">Do you have any new reports or assets you would like to share? Including impact reports, digital assets, EPK or other updates?</label>
<p>NOTE: please only share documents you are happy to be made public</p>
<p class="fw-bold messages"></p>
</div>
</div>
<div id="completed-year-section">
<div class="row mb-3">
<div class="col-sm-12">
<h5 class="fw-bold text-uppercase">Completed Films</h5>
</div>
</div>
<div class="row mb-2">
<div class="col-sm-12 form-group">
<h6 class="fw-bold text-uppercase">Release</h6>
</div>
</div>
<div class="row mb-4">
<div class="col-sm-6 form-group">
<label for="completeFilmYear" class="fw-bold">What year was your film completed? <span class="text-danger">*</span></label>
{{ form_widget(form.completeFilmYear, {'attr': {'class': 'js-datepicker'}}) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group inline-checkbox">
<label for="isCompleteFilmRelease" class="fw-bold">Has your film been released? <span class="text-danger">*</span></label>
{{ form_widget(form.isCompleteFilmRelease) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-6 form-group">
<label for="screenerLink" class="fw-bold">{{ form_label(form.screenerLink) }}</label>
{{ form_widget(form.screenerLink, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-6 form-group">
<label for="screenPassword" class="fw-bold">{{ form_label(form.screenPassword) }}</label>
{{ form_widget(form.screenPassword, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div>
{# <div class="col-sm-6 form-group">
<label for="trailerLink" class="fw-bold">{{ form_label(form.trailerLink) }}</label>
{{ form_widget(form.trailerLink, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div> #}
{# <div class="col-sm-6 form-group">
<label for="trailerPassword" class="fw-bold">{{ form_label(form.trailerPassword) }}</label>
{{ form_widget(form.trailerPassword, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div> #}
<div class="col-sm-12 form-group">
<label for="completeFilmWhereAvailable" class="fw-bold">Where is your film available to watch?</label>
{{ form_widget(form.completeFilmWhereAvailable, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">
<label for="completeFilmType" class="fw-bold">Select all that apply for your project</label>
{{ form_widget(form.completeFilmType) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group completeFilmTypeDetails">
<label for="completeFilmTypeDetails" class="fw-bold">Please specify if other</label>
{{ form_widget(form.completeFilmTypeDetails) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group d-none">
<label for="digitalAssetsLink" class="fw-bold">{{ form_label(form.digitalAssetsLink) }}</label>
{{ form_widget(form.digitalAssetsLink) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">
<label for="completeFilmProgressDetails" class="fw-bold">Please provide details on what is confirmed, as well as anything else that is in progress but not yet confirmed.</label>
{{ form_widget(form.completeFilmProgressDetails, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div>
</div>
<div id="isReleasedSection" style="display: none;">
<div class="row mb-2">
<div class="col-sm-12">
<h6 class="fw-bold text-uppercase">Reach & Response</h6>
</div>
</div>
<div class="row mb-4">
<div class="col-sm-12 form-group">
<label for="reachResponseDetails" class="fw-bold">Share any details you have on the reach and release of your film here (estimated audiences, who you have reached, where and how, audience feedback, partner feedback, critic reviews, media etc) </label>
{{ form_widget(form.reachResponseDetails, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">Remember that you can always provide additional updates or uploads via your project page</div>
</div>
<div class="row mb-2">
<div class="col-sm-12">
<h6 class="fw-bold text-uppercase">Use</h6>
</div>
</div>
<div class="row mb-4">
<div class="col-sm-12 form-group">
<label for="reachResponseUse" class="fw-bold">Will your film be used for any of the following? (Select all that apply)</label>
{{ form_widget(form.reachResponseUse) }}
<p class="fw-bold messages"></p>
</div>
</div>
<div class="row mb-4">
<div class="col-sm-12 form-group reachResponseUseDetails">
<label for="reachResponseUseDetails" class="fw-bold">Please specify</label>
{{ form_widget(form.reachResponseUseDetails) }}
<p class="fw-bold messages"></p>
</div>
</div>
<div class="row mb-2">
<div class="col-sm-12">
<h6 class="fw-bold text-uppercase">Outcomes</h6>
</div>
</div>
<div class="row mb-4">
<div class="col-sm-12 form-group">
<label for="outcomeChange" class="fw-bold">What is the most significant change that has occurred as a result of your project so far?</label>
<p class="mb-0">Please write this in a way that can be shared externally.</p>
{{ form_widget(form.outcomeChange, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group inline-checkbox">
<label for="isOutcomeMeasuredImpact" class="fw-bold">Have you been measuring and evaluating the impact of your film during release and outreach?</label>
{{ form_widget(form.isOutcomeMeasuredImpact) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group outcomeMeasuredImpactDetails">
<label for="outcomeMeasuredImpactDetails" class="fw-bold">Please specify</label>
{{ form_widget(form.outcomeMeasuredImpactDetails) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group mb-2">
<label class="fw-bold">To what extent has your film contributed to the following:</label>
</div>
<div class="col-sm-12 form-group inline-checkbox">
<ul>
<li class="form-group">
<label for="outcomeAwarenessExtent" class="fw-bold">Improved awareness, understanding or attitudes</label>
{{ form_widget(form.outcomeAwarenessExtent) }}
<p class="fw-bold messages"></p>
</li>
<li class="form-group">
<label for="outcomeVisibilityExtent" class="fw-bold">Increased visibility of diverse voices and experiences</label>
{{ form_widget(form.outcomeVisibilityExtent) }}
<p class="fw-bold messages"></p>
</li>
<li class="form-group">
<label for="outcomeConnectionExtent" class="fw-bold">Improved connection and engagement around a social issue</label>
{{ form_widget(form.outcomeConnectionExtent) }}
<p class="fw-bold messages"></p>
</li>
<li class="form-group">
<label for="outcomeActionExtent" class="fw-bold">Increased action on a social issue (e.g. discuss, donate, advocate, volunteer)</label>
{{ form_widget(form.outcomeActionExtent) }}
<p class="fw-bold messages"></p>
</li>
<li class="form-group">
<label for="outcomeOrganisationExtent" class="fw-bold">Organisational outcomes (e.g. improved initiatives or profile, more resources)</label>
{{ form_widget(form.outcomeOrganisationExtent) }}
<p class="fw-bold messages"></p>
</li>
<li class="form-group">
<label for="outcomeCommunityExtent" class="fw-bold">Community outcomes (e.g. increased connection, educational outcomes, new initiatives, research)</label>
{{ form_widget(form.outcomeCommunityExtent) }}
<p class="fw-bold messages"></p>
</li>
<li class="form-group">
<label for="outcomeSystemExtent" class="fw-bold">Systems change (e.g. increased public pressure, policy/ legislative influence)</label>
{{ form_widget(form.outcomeSystemExtent) }}
<p class="fw-bold messages"></p>
</li>
</ul>
</div>
</div>
<div class="col-sm-12 form-group outcomeAdditionalInformation">
<label for="outcomeAdditionalInformation" class="fw-bold">{{ form_label(form.outcomeAdditionalInformation) }}</label>
{{ form_widget(form.outcomeAdditionalInformation) }}
<p class="fw-bold messages"></p>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-sm-12">
<h5 class="fw-bold text-uppercase">FEEDBACK ON DOCUMENTARY AUSTRALIA</h5>
</div>
</div>
<div class="row mb-4">
<div class="col-sm-12 form-group">
<label for="feedbackEngagement" class="fw-bold">Have you engaged with DA in any of the following ways? (select all that apply)</label>
{{ form_widget(form.feedbackEngagement) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group feedbackEngagementDetails">
<label for="feedbackEngagementDetails" class="fw-bold">Please specify</label>
{{ form_widget(form.feedbackEngagementDetails) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group d-none">
<label for="generalSupportArea" class="fw-bold">{{ form_label(form.generalSupportArea) }}</label>
{{ form_widget(form.generalSupportArea) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group generalSupportAreaDetails d-none">
<label for="generalSupportAreaDetails" class="fw-bold">{{ form_label(form.generalSupportAreaDetails) }}</label>
{{ form_widget(form.generalSupportAreaDetails) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 mb-2">
<div>This feedback is completely anonymous and will not be linked to your project or user account. Honest answers to these questions will allow us to assess our work and continue to improve.</div>
</div>
<div class="col-sm-12 form-group mb-2">
<label class="fw-bold">Please rate your level of agreement or disagreement:</label>
</div>
<div class="col-sm-12 form-group inline-checkbox">
<ul>
<li class="form-group">
<label for="feedbackExperienceAgreement" class="fw-bold">I am satisfied with my experience of Documentary Australia</label>
{{ form_widget(form.feedbackExperienceAgreement) }}
<p class="fw-bold messages"></p>
</li>
<li class="form-group">
<label for="feedbackBenefitAgreement" class="fw-bold">My project benefited from being approved by Documentary Australia</label>
{{ form_widget(form.feedbackBenefitAgreement) }}
<p class="fw-bold messages"></p>
</li>
<li class="form-group">
<label for="feedbackRecommendAgreement" class="fw-bold">I would recommend Documentary Australia to others</label>
{{ form_widget(form.feedbackRecommendAgreement) }}
<p class="fw-bold messages"></p>
</li>
<li class="form-group">
<label for="feedbackCriticalRoleAgreement" class="fw-bold">Documentary Australia is playing a critical role in the documentary sector</label>
{{ form_widget(form.feedbackCriticalRoleAgreement) }}
<p class="fw-bold messages"></p>
</li>
</ul>
</div>
<div class="col-sm-12 form-group">
<label for="feedbackDoingWell" class="fw-bold">What do you think Documentary Australia is doing well?</label>
{{ form_widget(form.feedbackDoingWell, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">
<label for="feedbackImprovement" class="fw-bold">What could Documentary Australia improve?</label>
{{ form_widget(form.feedbackImprovement, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">
<label for="feedbackInvolvement"><b>Please select whether your involvement with Documentary Australia has:</b> (select all that apply)</label>
{{ form_widget(form.feedbackInvolvement) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group feedbackImprovementDetails">
<label for="feedbackImprovementDetails" class="fw-bold">Please specify</label>
{{ form_widget(form.feedbackImprovementDetails) }}
<p class="fw-bold messages"></p>
</div>
<div class="col-sm-12 form-group">
<label for="feedbackComment" class="fw-bold">Any other comments or feedback?</label>
{{ form_widget(form.feedbackComment, {'attr': {'class': 'form-control'}}) }}
<p class="fw-bold messages"></p>
</div>
</div>
</div>
</div>
<div class="row pt-4 mb-4">
<div class="col-sm-12">
<div class="d-flex justify-content-between">
<button type="button" class="rounded-pill gap-2 btn btn-lg btn-primary text-uppercase" id="prevProgressReportBtn" style="display: none;">Previous</button>
<button type="button" class="ms-auto rounded-pill gap-2 btn btn-lg btn-primary text-uppercase" id="nextProgressReportBtn" disabled>Next</button>
<button id="submit" class="rounded-pill gap-2 btn btn-lg btn-primary text-uppercase" type="submit" >
Submit
</button>
</div>
</div>
</div>
{{ form_end(form) }}
</div>
</div>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/fontawesome.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/solid.min.css" />
{% endblock %}