From 57b4657353dd1e783f666470a6be5ddb82c31af0 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Sat, 7 May 2022 16:34:53 -0700 Subject: [PATCH] Remove a couple of unused comments Signed-off-by: Alek Ratzloff --- board/views.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/board/views.py b/board/views.py index 4afca0c..ef0fd7e 100644 --- a/board/views.py +++ b/board/views.py @@ -50,7 +50,6 @@ class CreatePostView(CreateView): class BoardView(CreatePostView): model = Post form_class = PostForm - # fields = ["subject", "name", "text", "image"] slug_field = "url" slug_url_kwarg = "url" template_name = "board/board_detail.html" @@ -87,7 +86,6 @@ class BoardView(CreatePostView): class PostView(CreatePostView): model = Post - # fields = ["name", "text", "image"] form_class = ReplyForm slug_field = "url" slug_url_kwarg = "url"