From eb930b71d65202139903d02bb7a3ebb91dc3d240 Mon Sep 17 00:00:00 2001 From: moanos Date: Fri, 9 May 2025 21:03:00 +0200 Subject: [PATCH] fix: remove debug statements --- src/fellchensammlung/views.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/fellchensammlung/views.py b/src/fellchensammlung/views.py index 29beff2..eba7311 100644 --- a/src/fellchensammlung/views.py +++ b/src/fellchensammlung/views.py @@ -156,11 +156,9 @@ def adoption_notice_detail(request, adoption_notice_id, template=None): comment_form = CommentForm(instance=adoption_notice) context = {"adoption_notice": adoption_notice, "comment_form": comment_form, "user": request.user, "has_edit_permission": has_edit_permission, "is_subscribed": is_subscribed} - print(f"{template=}") if template is not None: return render(request, template, context=context) else: - print("dada") return render(request, 'fellchensammlung/details/detail_adoption_notice.html', context=context)