Rename publisher->org in Product model

This is requied to support notifications, and good for consistency
in general.
This commit is contained in:
Magnus Hagander
2012-06-26 14:32:13 +02:00
parent 4cbb54a1d7
commit abddf4149e
3 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ class MirrorAdmin(admin.ModelAdmin):
ordering = ('country_code', )
class ProductAdmin(PgwebAdmin):
list_display = ('name', 'publisher', 'approved', 'lastconfirmed',)
list_display = ('name', 'org', 'approved', 'lastconfirmed',)
list_filter = ('approved',)
search_fields = ('name', 'description', )
ordering = ('name', )