From b14dc2abc25e59e66237fef8d9c2b55ad9592dcf Mon Sep 17 00:00:00 2001 From: Bobby Date: Fri, 29 Jul 2022 23:01:55 +0530 Subject: Account Page with Fetched Information from the database --- users/admin.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'users/admin.py') diff --git a/users/admin.py b/users/admin.py index 8c38f3f3..f5116502 100644 --- a/users/admin.py +++ b/users/admin.py @@ -1,3 +1,6 @@ from django.contrib import admin # Register your models here. +from .models import UserProfile + +admin.site.register(UserProfile) -- cgit v1.2.3