This commit is contained in:
Víðir Valberg Guðmundsson 2018-01-07 17:20:45 +01:00
parent 19963db102
commit 61f7e43bdb

View file

@ -35,13 +35,13 @@ class ProductCategoryAdmin(admin.ModelAdmin):
def available_from(product): def available_from(product):
if product.available_in: if product.available_in.lower:
return product.available_in.lower.strftime("%c") return product.available_in.lower.strftime("%c")
return "None" return "None"
available_from.short_description = 'Available from' available_from.short_description = 'Available from'
def available_to(product): def available_to(product):
if product.available_in: if product.available_in.upper:
return product.available_in.upper.strftime("%c") return product.available_in.upper.strftime("%c")
return "None" return "None"
available_to.short_description = 'Available to' available_to.short_description = 'Available to'