WMDE
/
eva
forked from tohe/eva
7
1
Fork 0
eva/evapp/admin.py

11 lines
359 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# import Django´s admin interface module
from django.contrib import admin
# import the Employee model from the current app
from .models import Employee
# Register the Employee model with the Django admin site
# This makes the Employee model manageable through the admin interface
admin.site.register([
Employee,
])