working on ordering products by created date

This commit is contained in:
Sam
2021-02-24 13:28:22 +00:00
parent 739c79da60
commit d98ee02f32
6 changed files with 63 additions and 8 deletions

View File

@@ -26,7 +26,7 @@ class ProductTagFilter(django_filters.FilterSet):
class Meta:
model = Product
fields = ['name', 'tags', 'category', 'attributes']
fields = ['name', 'tags', 'category', 'attributes', 'company', 'created']
def tag_filter(self, queryset, name, value):
return queryset.filter(**{