Stefan van den Eertwegh
Stefan van den Eertwegh
Changed order of address fields. Zipcode needs to go before city field. You can see that its wrong in the summary of the address in a users detail page from...
Problem: There are strings like `" with customer name matching '%s'"`. You notice the space before. The string is translated without the space before. Fore example in oscar/apps/dashboard/users/views.py (ProjectAlertListView) regel...
Date from and date in dashboard are now ready with format_datetime. Below List Views are already working with the format_datetime function: - oscar/apps/dashboard/reviews/views.py - oscar/apps/dashboard/reports/views.py Only the orders filtering list...
https://github.com/django-oscar/django-oscar/blob/362ee0c881febe7f908900551f6c3a3141df5263/src/oscar/apps/dashboard/orders/forms.py#L47 This code .strftime(settings.DATE_FORMAT) added works! ``` def _determine_filter_metadata(self): self._filters = {} self._description = _("All orders") if self.errors: return date_from = self.cleaned_data["date_from"] date_to = self.cleaned_data["date_to"] if date_from and date_to: #...
You have now in your product page in a tab 'description'. I would like to suggest that description is split into a long description and a summary below the price...