admin stuff
This commit is contained in:
parent
209cb8e05a
commit
1ceb88c052
1 changed files with 2 additions and 2 deletions
|
@ -4,16 +4,16 @@ from models import *
|
|||
|
||||
class ProjectImageInline(admin.TabularInline):
|
||||
model = ProjectImage
|
||||
extra = 12
|
||||
extra = 20
|
||||
|
||||
class ProjectAdmin(admin.ModelAdmin):
|
||||
prepopulated_fields = {'slug': ('title',)}
|
||||
inlines = [ProjectImageInline]
|
||||
|
||||
class SliderImageAdmin(admin.ModelAdmin):
|
||||
list_display = ('__unicode__', 'order',)
|
||||
list_editable = ('order',)
|
||||
|
||||
|
||||
admin.site.register(Project, ProjectAdmin)
|
||||
admin.site.register(SliderImage, SliderImageAdmin)
|
||||
admin.site.register(Link)
|
||||
|
|
Loading…
Add table
Reference in a new issue