Change content following content review

This commit is contained in:
Pea Tyczynska
2021-02-16 15:20:15 +00:00
parent 7c34a9bd46
commit 47f20ae438
4 changed files with 9 additions and 9 deletions

View File

@@ -79,7 +79,7 @@
{% call row() %}
{{ text_field('Billing details')}}
{{ optional_text_field(current_org.billing_details, default="No billing details yet", wrap=True) }}
{{ optional_text_field(current_org.billing_details, default="None", wrap=True) }}
{{ edit_field(
'Change',
url_for('.edit_organisation_billing_details', org_id=current_org.id),
@@ -90,7 +90,7 @@
{% call row() %}
{{ text_field('Notes')}}
{{ optional_text_field(current_org.notes, default="No notes yet", wrap=True) }}
{{ optional_text_field(current_org.notes, default="None", wrap=True) }}
{{ edit_field(
'Change',
url_for('.edit_organisation_notes', org_id=current_org.id),

View File

@@ -335,14 +335,14 @@
{% endcall %}
{% call row() %}
{{ text_field('Billing details')}}
{{ optional_text_field(current_service.billing_details, default="No billing details yet", wrap=True) }}
{{ optional_text_field(current_service.billing_details, default="None", wrap=True) }}
{{ edit_field('Change', url_for('.edit_service_billing_details', service_id=current_service.id), suffix='billing details for service') }}
{% endcall %}
{% endif %}
{% call row() %}
{{ text_field('Notes')}}
{{ optional_text_field(current_service.notes, default="No notes yet", wrap=True) }}
{{ optional_text_field(current_service.notes, default="None", wrap=True) }}
{{ edit_field('Change', url_for('.edit_service_notes', service_id=current_service.id), suffix='the notes for the service') }}
{% endcall %}