Skip to content

Commit 96244f4

Browse files
committed
[fix] gnuboard#595 부트스트랩 > 게시글 작성 폼 - 생성/수정 URL 조건 누락 수정
1 parent 38a99bb commit 96244f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/bootstrap/board/basic/write_form.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
{% set bo_table_width=board.bo_table_width if board.bo_table_width > 0 else 100 %}
2121
<section id="bo_w" class="fs-4">
2222
<!-- 게시물 작성/수정 시작 { -->
23-
<form name="fwrite" id="fwrite" action="/board/write_update/{{ board.bo_table }}" method="post" enctype="multipart/form-data" onsubmit="return fwrite_submit(this);" autocomplete="off" style="width:{{ bo_table_width }}{% if bo_table_width <= 100 %}%{% else %}px{% endif %}">
23+
<form name="fwrite" id="fwrite" action="/board/write_update/{{ board.bo_table }}{% if write.wr_id %}/{{write.wr_id}}{% endif %}" method="post" enctype="multipart/form-data" onsubmit="return fwrite_submit(this);" autocomplete="off" style="width:{{ bo_table_width }}{% if bo_table_width <= 100 %}%{% else %}px{% endif %}">
2424
<input type="hidden" name="uid" value="{{ get_unique_id(request) }}">
2525
<input type="hidden" name="wr_id" value="{{ write.wr_id }}">
2626
<input type="hidden" name="parent_id" value="{{ request.query_params.parent_id }}">

0 commit comments

Comments
 (0)