Woops, available_in can be null
This commit is contained in:
parent
eb4a038019
commit
19963db102
|
@ -35,11 +35,15 @@ class ProductCategoryAdmin(admin.ModelAdmin):
|
||||||
|
|
||||||
|
|
||||||
def available_from(product):
|
def available_from(product):
|
||||||
|
if product.available_in:
|
||||||
return product.available_in.lower.strftime("%c")
|
return product.available_in.lower.strftime("%c")
|
||||||
|
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:
|
||||||
return product.available_in.upper.strftime("%c")
|
return product.available_in.upper.strftime("%c")
|
||||||
|
return "None"
|
||||||
available_to.short_description = 'Available to'
|
available_to.short_description = 'Available to'
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue