Fix #1569 add option to control whether notices are included in combined board

This commit is contained in:
Kijin Sung 2021-01-19 21:22:31 +09:00
parent 06f973d227
commit 77403f384a
5 changed files with 23 additions and 3 deletions

View file

@ -32,6 +32,13 @@
<p class="x_help-block">{$lang->about_board_include_days}</p>
</div>
</div>
<div class="x_control-group">
<label class="x_control-label">{$lang->cmd_board_include_notice}</label>
<div class="x_controls">
<label class="x_inline"><input name="include_notice" type="radio" value="Y" checked="checked"|cond="$module_info->include_notice !== 'N'" /> {$lang->cmd_yes} </label>
<label class="x_inline"><input name="include_notice" type="radio" value="N" checked="checked"|cond="$module_info->include_notice === 'N'" /> {$lang->cmd_no} </label>
</div>
</div>
<div class="btnArea">
<button type="submit" class="x_btn x_btn-primary">{$lang->cmd_save}</button>
</div>