-
-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
squash! [Bexley] Spot open container requests.
Separate delivery/collection.
- Loading branch information
Showing
4 changed files
with
75 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,28 @@ | ||
[% PROCESS 'waste/_services_header.html' %] | ||
[% PROCESS 'waste/_service_missed.html' %] | ||
|
||
[% IF unit.requests_open %] | ||
[% IF unit.deliver_open %] | ||
<span class="waste-service-descriptor"> | ||
A [% unit.service_name FILTER lower %] container request has been made. Check status below: | ||
A [% unit.service_name FILTER lower %] container delivery request has been made. Check status below: | ||
<ul> | ||
<li>Reported on: [% unit.request_details.reported ? date.format(unit.request_details.reported) : 'N/A' %]</li> | ||
<li>Will be completed by: [% unit.request_details.will_be_completed ? date.format(unit.request_details.will_be_completed) : 'N/A' %]</li> | ||
<li>Action: [% unit.request_details.latest_comment %]</li> | ||
<li>Reported on: [% unit.deliver_details.reported ? date.format(unit.deliver_details.reported) : 'N/A' %]</li> | ||
<li>Will be completed by: [% unit.deliver_details.will_be_completed ? date.format(unit.deliver_details.will_be_completed) : 'N/A' %]</li> | ||
<li>Action: [% unit.deliver_details.latest_comment %]</li> | ||
</ul> | ||
</span> | ||
[% END %] | ||
|
||
[% IF unit.collect_open %] | ||
<span class="waste-service-descriptor"> | ||
A [% unit.service_name FILTER lower %] container collection request has been made. Check status below: | ||
<ul> | ||
<li>Reported on: [% unit.collect_details.reported ? date.format(unit.collect_details.reported) : 'N/A' %]</li> | ||
<li>Will be completed by: [% unit.collect_details.will_be_completed ? date.format(unit.collect_details.will_be_completed) : 'N/A' %]</li> | ||
<li>Action: [% unit.collect_details.latest_comment %]</li> | ||
</ul> | ||
</span> | ||
[% END %] | ||
|
||
[% ELSIF unit.delivery_allowed || unit.removal_allowed %] | ||
[% IF unit.delivery_allowed || unit.removal_allowed %] | ||
[% PROCESS 'waste/_services_request.html' %] | ||
[% END %] |