Commit 62cb3652 authored by Anya Habana's avatar Anya Habana

Created admin for WidgetUser and registered it

parent f2758ed2
from django.contrib import admin from django.contrib import admin
from .models import WidgetUser
class WidgetUserAdmin(admin.ModelAdmin):
model = WidgetUser
# Register your models here. # Register your models here.
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