eva/evapp/admin.py

7 lines
140 B
Python

from django.contrib import admin
from .models import Employee
admin.site.register([
Employee,
])