Skip to content

Commit

Permalink
added publish_to to fieldsets of admin for ListingInlineAdmin
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalMaM committed Dec 4, 2012
1 parent 5ab8ad4 commit 479ad68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ella/core/admin.py
Expand Up @@ -14,7 +14,7 @@ class Meta:
class ListingInlineAdmin(admin.TabularInline):
model = Listing
extra = 2
fieldsets = ((None, {'fields': ('category', 'publish_from', 'commercial',)}),)
fieldsets = ((None, {'fields': ('category', 'publish_from', 'publish_to', 'commercial',)}),)


class RelatedInlineAdmin(admin.TabularInline):
Expand Down

0 comments on commit 479ad68

Please sign in to comment.