diff options
author | JAY BORA | 2019-02-24 22:03:46 +0530 |
---|---|---|
committer | JAY BORA | 2019-02-24 22:03:46 +0530 |
commit | f7fc0670571601436489428f18ce8e1877499ff8 (patch) | |
tree | f95a8bf353e09c82218e7c1089b39556403b5748 | |
parent | 9ef2fd9714811f6fddcad13e88bb13836f2d6aa0 (diff) | |
download | workshop_booking-f7fc0670571601436489428f18ce8e1877499ff8.tar.gz workshop_booking-f7fc0670571601436489428f18ce8e1877499ff8.tar.bz2 workshop_booking-f7fc0670571601436489428f18ce8e1877499ff8.zip |
This shows the workshop details in profile section.
-rw-r--r-- | statistics_app/views.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/statistics_app/views.py b/statistics_app/views.py index 02135c4..1507196 100644 --- a/statistics_app/views.py +++ b/statistics_app/views.py @@ -527,7 +527,6 @@ def workshop_public_stats(request): @login_required def profile_stats(request): user = request.user - print is_instructor(user) if is_instructor(user) and is_email_checked(user): profiles = Profile.objects.all() |