Commit f19d7736553679ea6211d2e9a945c2f24385e58f
1 parent
b011d448
Exists in
master
and in
3 other branches
removed print statement where it shouldn't have been
Showing
1 changed file
with
1 additions
and
4 deletions
Show diff stats
categories/views.py
... | ... | @@ -51,10 +51,7 @@ class IndexView(LoginRequiredMixin, ListView): |
51 | 51 | list_categories = None |
52 | 52 | categories = self.get_queryset().order_by('name') |
53 | 53 | |
54 | - for category in categories: | |
55 | - print(category.coordinators) | |
56 | - #if self.request.user in category.coordinators: | |
57 | - # print("here") | |
54 | + | |
58 | 55 | |
59 | 56 | |
60 | 57 | ... | ... |