from django.contrib import admin
from .models import Appointment

# Register your models here.

@admin.register(Appointment)
class AppointmentAdmin(admin.ModelAdmin):
    list_display = ['id', 'name', 'company', 'scheduled_date', 'offtime', 'appointment_phone']
    list_filter = ['company', 'offtime', 'scheduled_date']
    search_fields = ['user__username', 'company__name']
    ordering = ['-scheduled_date']