Skip to content

Commit

Permalink
[fix] gnuboard#460 사용자페이지에서 게시판, Q&A 여분필드가 입력되지 않는 오류 수정
Browse files Browse the repository at this point in the history
- formclass.py > 게시판, Q&A의 여분필드 속성 값 추가
  • Loading branch information
KimTom89 authored and Junanjunan committed Feb 28, 2024
1 parent 6adb1fc commit 6c35ac6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions core/formclass.py
Expand Up @@ -337,6 +337,17 @@ class WriteForm:
wr_link1: str = Form(None)
wr_link2: str = Form(None)

wr_1: str = Form("")
wr_2: str = Form("")
wr_3: str = Form("")
wr_4: str = Form("")
wr_5: str = Form("")
wr_6: str = Form("")
wr_7: str = Form("")
wr_8: str = Form("")
wr_9: str = Form("")
wr_10: str = Form("")


@dataclass
class WriteCommentForm:
Expand Down Expand Up @@ -469,6 +480,12 @@ class QaContentForm:
qa_subject: str = Form(...)
qa_content: str = Form("")

qa_1: str = Form("")
qa_2: str = Form("")
qa_3: str = Form("")
qa_4: str = Form("")
qa_5: str = Form("")


@dataclass
class NewwinForm:
Expand Down

0 comments on commit 6c35ac6

Please sign in to comment.