mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-09 12:02:24 +09:00
Fix #1217 enable notifications for scrap
This commit is contained in:
parent
05fed158d0
commit
b1e01b0fc5
9 changed files with 93 additions and 6 deletions
|
|
@ -62,7 +62,7 @@
|
|||
<label class="x_control-label">{$lang->anonymous_voter}</label>
|
||||
<div class="x_controls">
|
||||
<label class="x_inline">
|
||||
<input type="radio" name="anonymous_voter" value="Y" checked="checked"|cond="$config->anonymous_voter === 'Y'" /> {$lang->use}
|
||||
<input type="radio" name="anonymous_voter" value="Y" checked="checked"|cond="$config->anonymous_voter !== 'N'" /> {$lang->use}
|
||||
</label>
|
||||
<label class="x_inline">
|
||||
<input type="radio" name="anonymous_voter" value="N" checked="checked"|cond="$config->anonymous_voter === 'N'" /> {$lang->notuse}
|
||||
|
|
@ -70,11 +70,23 @@
|
|||
<p class="x_help-block">{$lang->about_anonymous_voter}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="x_control-group">
|
||||
<label class="x_control-label">{$lang->anonymous_scrap}</label>
|
||||
<div class="x_controls">
|
||||
<label class="x_inline">
|
||||
<input type="radio" name="anonymous_scrap" value="Y" checked="checked"|cond="$config->anonymous_scrap !== 'N'" /> {$lang->use}
|
||||
</label>
|
||||
<label class="x_inline">
|
||||
<input type="radio" name="anonymous_scrap" value="N" checked="checked"|cond="$config->anonymous_scrap === 'N'" /> {$lang->notuse}
|
||||
</label>
|
||||
<p class="x_help-block">{$lang->about_anonymous_scrap}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="x_control-group">
|
||||
<label class="x_control-label">{$lang->highlight_effect}</label>
|
||||
<div class="x_controls">
|
||||
<label class="x_inline">
|
||||
<input type="radio" name="highlight_effect" value="Y" checked="checked"|cond="$config->highlight_effect === 'Y'" /> {$lang->use}
|
||||
<input type="radio" name="highlight_effect" value="Y" checked="checked"|cond="$config->highlight_effect !== 'N'" /> {$lang->use}
|
||||
</label>
|
||||
<label class="x_inline">
|
||||
<input type="radio" name="highlight_effect" value="N" checked="checked"|cond="$config->highlight_effect === 'N'" /> {$lang->notuse}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue