Skip to content

Commit

Permalink
[Brent, Bromley, Kingston] Use more specific wording when collection …
Browse files Browse the repository at this point in the history
…is in progress

For FD-3326
  • Loading branch information
davea committed Sep 15, 2023
1 parent 4963cef commit ed1ef46
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions templates/web/brent/waste/services.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
</form>
[% ELSIF unit.report_locked_out %]
<span class="waste-service-descriptor">A missed collection cannot be reported, please see the last collection status above.</span>
[% ELSIF unit.next AND unit.next.state == 'In progress' %]
<span class="waste-service-descriptor" style="margin-top: 1.5em;">A missed collection cannot be reported on the day of collection until the crew have finished their round.</span>
[% ELSE %]
<span class="waste-service-descriptor" style="margin-top: 1.5em;">Please note that missed collections can only be reported within 2 working days of your scheduled collection.</span>
[% END %]
Expand Down
6 changes: 5 additions & 1 deletion templates/web/bromley/waste/services.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ <h3 class="govuk-heading-l govuk-warning-text__heading">Your subscription is now
</div>
</div>
[% END %]
<span class="waste-service-descriptor" style="margin-top: 1.5em;">Please note that missed collections can only be reported within 2 working days of your scheduled collection day.</span>
[% IF unit.next AND unit.next.state == 'In progress' %]
<span class="waste-service-descriptor" style="margin-top: 1.5em;">A missed collection cannot be reported on the day of collection until the crew have finished their round.</span>
[% ELSE %]
<span class="waste-service-descriptor" style="margin-top: 1.5em;">Please note that missed collections can only be reported within 2 working days of your scheduled collection day.</span>
[% END %]
[% END %]

<a href="[% c.uri_for_action('waste/enquiry', [ property.id ]) %]?template=problem&amp;service_id=[% unit.service_id %]" class="waste-service-link waste-service-descriptor">Report a problem with a [% unit.service_name FILTER lower %] collection</a>
Expand Down
2 changes: 2 additions & 0 deletions templates/web/kingston/waste/services.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
</form>
[% ELSIF unit.report_locked_out %]
<span class="waste-service-descriptor">A missed collection cannot be reported, please see the last collection status above.</span>
[% ELSIF unit.next AND unit.next.state == 'In progress' %]
<span class="waste-service-descriptor" style="margin-top: 1.5em;">A missed collection cannot be reported on the day of collection until the crew have finished their round.</span>
[% ELSE %]
<span class="waste-service-descriptor" style="margin-top: 1.5em;">Please note that missed collections can only be reported after the collection on your street was completed and for 2 working days after your scheduled collection.</span>
[% END %]
Expand Down

0 comments on commit ed1ef46

Please sign in to comment.