Pacu2
Pacu2
On production, while using: `{% webpack_static 'filename.css' %}` I think it should resolve to `/some/dir/filename.hash.css` rather than `/some/dir/filename.css` It would allow me to get URLs for prefetching/preloading. Shouldn't `webpack_static` follow...
Latest Pytest throws deprecation errors straight into the console, after merging this PR there will be one log less. `context` kwarg will be deprecated in Django 3.0, and was dropped...
Decimal and Ints are accepted value for MoneyField, which might lead to hard-to-catch bugs. I'd propose to only accept Money types, except for 0 value - which can be automatically...
`decimal_places` should be equal to decimal places of the default currency, instead of being harcoded similar is done in Saleor: https://github.com/mirumee/saleor/blob/master/saleor/settings.py#L292 https://github.com/mirumee/saleor/blob/master/saleor/discount/models.py#L59-L61
Consider the example below: ``` import freezegun from datetime import datetime with freezegun.freeze_time("1970-01-01 00:00"): print(datetime(2010, 10, 10).timestamp()); print(datetime(2010, 10, 10).strftime('%s')) ``` it prints different values for each of the methods:...
As spotted in https://github.com/mirumee/saleor/issues/5121 the current demo does not enforce the URL ending in any way. For the web crawler, `/product-name/` and `/product-name` are two different URLs. 301 or 302...
We should have support for Google Analytics by default. I imagine that as data-driven e-commerce, we would like to track as much as possible, that's including: - [ ] Page...
There are some minor tweaks we could implement, eg. ## Homepage - [ ] Add meta description for the homepage - [ ] Add robots.txt file (or at least make...