diff options
| author | Bobby <[email protected]> | 2022-12-28 07:51:38 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-12-28 07:51:38 -0500 |
| commit | 54988a928d37fc12e1f6eb83c6ecfc2babe55e29 (patch) | |
| tree | 42f5a62061fc3b0a4e70484d6bfb4afe184224d1 /users/admin.py | |
| parent | 3ff3acef57e95ecd2e8dde429d4735e7c2e8e684 (diff) | |
| download | thatcomputerscientist-54988a928d37fc12e1f6eb83c6ecfc2babe55e29.tar.xz thatcomputerscientist-54988a928d37fc12e1f6eb83c6ecfc2babe55e29.zip | |
Registraion function with captcha working
Diffstat (limited to 'users/admin.py')
| -rw-r--r-- | users/admin.py | 3 |
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) |
