7 lines
140 B
Python
7 lines
140 B
Python
|
from django.contrib import admin
|
||
|
from .models import Employee
|
||
|
|
||
|
admin.site.register([
|
||
|
Employee,
|
||
|
])
|