23 lines
515 B
Python
23 lines
515 B
Python
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)
|
|
|