-
-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bexley][WW] Allow user to request new containers #5111
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #5111 +/- ##
==========================================
+ Coverage 82.41% 82.96% +0.54%
==========================================
Files 409 410 +1
Lines 32073 33272 +1199
Branches 5118 5459 +341
==========================================
+ Hits 26432 27603 +1171
- Misses 4122 4140 +18
- Partials 1519 1529 +10 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
0f87b08
to
6619f11
Compare
6619f11
to
bf29854
Compare
bf29854
to
2460d7d
Compare
99bbc13
to
41457d7
Compare
82e1602
to
903aff9
Compare
cec6990
to
68a3ded
Compare
Can be standalone or done as part of the delivery request flow
68a3ded
to
5bb8860
Compare
Also renamed final 'submit' to reflect that request is not just for new containers.
…form We had not handled cases where the container has a 'parent' (i.e. wheelie bin with different size options), nor handled removal options.
For clear sack deliveries.
…es' into bexley-ww-container-requests
…y and removal form
@@ -15,7 +15,7 @@ <h3>More services</h3> | |||
<li><a [% external_new_tab | safe %] href="[% c.uri_for_action('waste/request', [ property.id ]) %]?request_type=removal">Order removal of old bins</a></li> | |||
[% END %] | |||
[% IF property.has_boxes %] | |||
<li><a [% external_new_tab | safe %] href="[% c.uri_for_action('waste/request', [ property.id ]) %]?request_type=delivery&container-Deliver-Box-lids-55L=1">Order lids for recycling boxes</a></li> | |||
<li><a [% external_new_tab | safe %] href="[% c.uri_for_action('waste/request', [ property.id ]) %]?request_type=delivery&container-Deliver-Box-lids-55L=1">Order lids for recycling boxes</a></li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the amp; needed here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An ampersand declares the start of a special character; if instead of container
after it you'd had, dunno, =delivery&hearts=1
, then the HTML output would actually be delivery♥=1
. So & should be escaped in HTML output.
This is the 'base' branch for code for Bexley's container maintenance project (https://github.com/mysociety/societyworks/milestone/116) before putting everything live.
[skip changelog]