mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
UX: warn that something must be selected with safe mode
This commit is contained in:
@@ -6,24 +6,29 @@
|
||||
</p>
|
||||
<p>
|
||||
<label>
|
||||
<%= check_box_tag 'no_customizations', true, true %>
|
||||
<%= check_box_tag 'no_customizations', true, !flash[:must_select]%>
|
||||
<%= t 'safe_mode.no_customizations' %>
|
||||
</label>
|
||||
</p>
|
||||
<p>
|
||||
<label>
|
||||
<%= check_box_tag 'only_official', true, true %>
|
||||
<%= check_box_tag 'only_official', true, !flash[:must_select] %>
|
||||
<%= t 'safe_mode.only_official' %>
|
||||
</label>
|
||||
</p>
|
||||
<p>
|
||||
<label>
|
||||
<%= check_box_tag 'no_plugins', true, true %>
|
||||
<%= check_box_tag 'no_plugins', true, !flash[:must_select] %>
|
||||
<%= t 'safe_mode.no_plugins' %>
|
||||
</label>
|
||||
</p>
|
||||
<p>
|
||||
<%= submit_tag t('safe_mode.enter'), class: 'btn btn-danger' %>
|
||||
<%- if flash[:must_select] %>
|
||||
<span class='safe-mode-warning'>
|
||||
<i class='fa fa-warning'></i> <%= t 'safe_mode.must_select' %>
|
||||
</span>
|
||||
<%- end %>
|
||||
</p>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user