aboutsummaryrefslogtreecommitdiff
path: root/users/admin.py
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-07-29 23:01:55 +0530
committerBobby <[email protected]>2022-07-29 23:01:55 +0530
commitb14dc2abc25e59e66237fef8d9c2b55ad9592dcf (patch)
tree0ca5d60d97970ae143fc7221cfeb2020b60ed758 /users/admin.py
parent88057646dbd4876e0658e2e1ee35756c73db607a (diff)
downloadthatcomputerscientist-b14dc2abc25e59e66237fef8d9c2b55ad9592dcf.tar.xz
thatcomputerscientist-b14dc2abc25e59e66237fef8d9c2b55ad9592dcf.zip
Account Page with Fetched Information from the database
Diffstat (limited to 'users/admin.py')
-rw-r--r--users/admin.py3
1 files changed, 3 insertions, 0 deletions
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)