Commit b1cde49b authored by Gabriel G. Garrero's avatar Gabriel G. Garrero

Created admin panel for the dashboard app.

parent 0fe537ad
from django.contrib import admin
# Register your models here.
from .models import Department, WidgetUser
class DepartmentAdmin(admin.ModelAdmin):
model = Department
list_display = ("dept_name", "home_unit")
class WidgetUserAdmin(admin.ModelAdmin):
model = WidgetUser
list_display = ("first_name", "middle_name", "last_name", "department")
admin.site.register(Department, DepartmentAdmin)
admin.site.register(WidgetUser, WidgetUserAdmin)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment