11 lines
316 B
Python
11 lines
316 B
Python
|
from django.contrib import admin
|
||
|
|
||
|
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')
|
||
|
search_fields = ('name', 'phone')
|