aboutsummaryrefslogtreecommitdiff
path: root/users/admin.py
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-12-28 07:51:38 -0500
committerBobby <[email protected]>2022-12-28 07:51:38 -0500
commit54988a928d37fc12e1f6eb83c6ecfc2babe55e29 (patch)
tree42f5a62061fc3b0a4e70484d6bfb4afe184224d1 /users/admin.py
parent3ff3acef57e95ecd2e8dde429d4735e7c2e8e684 (diff)
downloadthatcomputerscientist-54988a928d37fc12e1f6eb83c6ecfc2babe55e29.tar.xz
thatcomputerscientist-54988a928d37fc12e1f6eb83c6ecfc2babe55e29.zip
Registraion function with captcha working
Diffstat (limited to 'users/admin.py')
-rw-r--r--users/admin.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/users/admin.py b/users/admin.py
index 49d40cef..f5116502 100644
--- a/users/admin.py
+++ b/users/admin.py
@@ -1,7 +1,6 @@
from django.contrib import admin
# Register your models here.
-from .models import UserProfile, CaptchaStore
+from .models import UserProfile
admin.site.register(UserProfile)
-admin.site.register(CaptchaStore)