You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
289 B

from django.contrib import admin
from app1.models import Profile, Address, Image
# Register your models here.
class ProfileAdmin(admin.ModelAdmin):
pass
admin.site.register(Profile, ProfileAdmin)
admin.site.register(Address, ProfileAdmin)
admin.site.register(Image, ProfileAdmin)

Powered by TurnKey Linux.