from django.contrib import admin

from .models import *

# Register your models here.

@admin.register(Profile)
class ProjetAdmin(admin.ModelAdmin):
    list_display=('first_name','last_name','email','Account_type','gender','phone_number','Profile_picture')




# # admin.site.register(Profile,ModelAdmin)

@admin.register(Profile_Agent)
class ProjetAdmin(admin.ModelAdmin):
    list_display=('first_name','last_name','email','Account_type','gender','phone_number','Profile_picture')


@admin.register(Profile_Admin)
class ProjetAdmin(admin.ModelAdmin):
    list_display=('first_name','last_name','email','Account_type','gender','phone_number','Profile_picture')


@admin.register(Prospect)
class ProjetAdmin(admin.ModelAdmin):
    list_display=('first_name_prospect','last_name_prospect','email_prospect','phone_number_prospect','location','timestamp','gender')
    

@admin.register(Profile_Broker)
class ProjetAdmin(admin.ModelAdmin):
    list_display=('first_name','last_name','email','Account_type','gender','phone_number','Profile_picture')


@admin.register(Profile_Mail_List)
class ProjetAdmin(admin.ModelAdmin):
    list_display=('customer_email',)