Dmitry Dobrynin
Dmitry Dobrynin
total_before_discounts_incl_tax is bug? [total_before_discounts_incl_tax](https://github.com/django-oscar/django-oscar/blob/3.1/src/oscar/apps/order/abstract_models.py#L195) now look like this: ```python @property def total_before_discounts_incl_tax(self): return (self.basket_total_before_discounts_incl_tax + self.shipping_incl_tax) ``` But in theory it should look like this: ```python @property def total_before_discounts_incl_tax(self): return...
* Fixed issue #57
The ability to insert css / js code inline to the page, using an optional argument in the template tag: {% javascript 'head_js' inline %}