Files
notifications-admin/app/templates/views/organisations/organisation/billing.html
2022-09-21 23:18:15 -04:00

41 lines
1.6 KiB
HTML

{% extends "org_template.html" %}
{% from "components/page-header.html" import page_header %}
{% block org_page_title %}
Billing
{% endblock %}
{% block maincolumn_content %}
{{ page_header("Billing", size="medium") }}
<div class="govuk-grid-row">
<div class="govuk-grid-column-five-sixths">
<h2 class="heading-small">
Data sharing and financial agreement
</h2>
{% if current_org.agreement_signed_at %}
<p class="govuk-body">
Your organisation accepted version {{ current_org.agreement_signed_version }} of the US Notify data sharing
and financial agreement on {{ current_org.agreement_signed_at | format_date_normal }}.
</p>
<p class="govuk-body">
{{ current_org.agreement_signed_on_behalf_of_name or current_org.agreement_signed_by.name }} signed the agreement
on behalf of {{ current_org.name}}.
</p>
{% elif current_org.agreement_signed %}
<p class="govuk-body">
{{ current_org.name}} has accepted the US Notify data sharing and financial agreement.
</p>
{% elif current_org.agreement_signed is false %}
<p class="govuk-body">
{{ current_org.name}} needs to accept the US Notify data sharing and financial agreement.
</p>
{% elif current_org.agreement_signed is none %}
<p class="govuk-body">
{{ current_org.name}} has not accepted the US Notify data sharing and financial agreement, but we have some service-specific agreements in place.
</p>
{% endif %}
</div>
</div>
{% endblock %}