diff --git a/polyclinic_scheduling/apps/polyclinic/admin.py b/polyclinic_scheduling/apps/polyclinic/admin.py index dcb5e0a..9cd6325 100644 --- a/polyclinic_scheduling/apps/polyclinic/admin.py +++ b/polyclinic_scheduling/apps/polyclinic/admin.py @@ -5,6 +5,6 @@ from .models import Polyclinic # Register your models here. @admin.register(Polyclinic) class PolyclinicAdmin(admin.ModelAdmin): - list_display = ('name', 'phone', 'created_at') - ordering = ('name', 'created_at','updated_at') + list_display = ('name', 'hospital','phone', 'created_at') + ordering = ('name', 'hospital','created_at','updated_at') search_fields = ('name', 'phone')