{% load i18n project_tags %} {% user_can_update_project_reports object user as can_update_project_reports %} {% if can_update_project_reports %}
{% trans "Reports" %}
{% trans "Report frequency" %}
{{ object.report_config.get_frequency_display }}
{% include 'application_projects/includes/report_frequency_config.html' with form=update_frequency_form extra_classes="form--report-frequency" config=object.report_config %}{% trans "Past reports" %}
{% trans "Period End" %} | {% trans "Submitted" %} | |
---|---|---|
{% trans "Period End" %}: {{ report.end_date }} | {% trans "Submitted" %}: {{ report.submitted_date|default:"Skipped" }} | {% if not report.skipped %} {% user_can_view_report report user as can_view_report %} {% if can_view_report %} {% trans "View" %} {% endif %} {% user_can_update_report report user as can_update_report %} {% if can_update_report %} {% trans "Edit" %} {% endif %} {% else %} {% if can_update_project_reports %} {% endif %} {% endif %} |
{% trans "No reports submitted" %} |