|
|
@@ -136,6 +136,27 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
+ <!-- GC-1755 Change Sentence -->
|
|
|
+ <div class="form-group">
|
|
|
+ {% set configName = 'settingForm[security:isEnabledDeleteCompletely]' %}
|
|
|
+ {% set configValue = getConfig('crowi','security:isEnabledDeleteCompletely') %}
|
|
|
+ <label for="{{configName}}" class="col-xs-3 control-label">ページを完全削除できるユーザーを制限する</label>
|
|
|
+ <div class="col-xs-9">
|
|
|
+ <div class="btn-group btn-toggle" data-toggle="buttons">
|
|
|
+ <label class="btn btn-default btn-rounded btn-outline {% if configValue %}active{% endif %}" data-active-class="primary">
|
|
|
+ <input name="{{configName}}" value="true" type="radio" {% if configValue %}checked{% endif %}> ON
|
|
|
+ </label>
|
|
|
+ <label class="btn btn-default btn-rounded btn-outline {% if !configValue %}active{% endif %}" data-active-class="default">
|
|
|
+ <input name="{{configName}}" value="false" type="radio" {% if !configValue %}checked{% endif %}> OFF
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <p class="help-block small">
|
|
|
+ ページを完全削除できるユーザーを管理者のみに制限します。
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
<div class="form-group">
|
|
|
<div class="col-xs-offset-3 col-xs-6">
|
|
|
<input type="hidden" name="_csrf" value="{{ csrf() }}">
|