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.