admin
This commit is contained in:
parent
fcc7fff5c2
commit
e39b9728c1
23
trubox/deals/admin.py
Normal file
23
trubox/deals/admin.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
from django.contrib import admin
|
||||
# from django.contrib.auth.models import User
|
||||
from models import *
|
||||
|
||||
'''
|
||||
class ProjectImageInline(admin.TabularInline):
|
||||
model = ProjectImage
|
||||
extra = 20
|
||||
'''
|
||||
|
||||
class ProductGroupAdmin(admin.ModelAdmin):
|
||||
pass
|
||||
# prepopulated_fields = {'slug': ('title',)}
|
||||
# inlines = [ProjectImageInline]
|
||||
|
||||
'''
|
||||
class SliderImageAdmin(admin.ModelAdmin):
|
||||
list_display = ('__unicode__', 'order',)
|
||||
list_editable = ('order',)
|
||||
'''
|
||||
|
||||
admin.site.register(ProductGroup, ProductGroupAdmin)
|
||||
|
Loading…
Reference in New Issue
Block a user