1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
# --
# Copyright (C) 2001-2021 OTRS AG, https://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
# --
<div>
<div class="InnerContent">
<h2>{{ Name }}</h2>
{% if ModificationAllowed == "1" and OTRSBusinessIsInstalled == "1" %}
<fieldset class="TableLike FixedLabelSmall">
<label for="ResetOptions"><span class="Mandatory Small">*</span> {{ "Reset options" | Translate }}:</label>
<div class="Field">
<select id="ResetOptions" class="Validate_Required Modernize" multiple="multiple" name="ResetOptions">
<option value="reset-globally" title="{{ "Reset setting on global level." | Translate }}" selected>
{{ "Reset globally" | Translate }}
</option>
<option value="reset-locally" title="{{ "Remove all user changes." | Translate }}">
{{ "Reset locally" | Translate }}
</option>
</select>
</div>
</fieldset>
<p>{{ "Help" | Translate}}:</p>
<ul class="Default">
<li>
<strong>{{ "Reset globally" | Translate }}</strong> -
{{ "Reset setting on global level." | Translate }}
</li>
<li>
<strong>{{ "Reset locally" | Translate }}</strong> -
{{ "Remove all user changes." | Translate }}
</li>
<li>
<i class="fa fa-spinner fa-spin"></i>
<span class="Hidden">
<span class="UserModificationCount"></span>
{{ "user(s) have modified this setting." | Translate }}
</span>
</li>
</ul>
{% else %}
<input type="hidden" id="ResetOptions" value="reset-globally"/>
<p>{{ "Do you really want to reset this setting to it's default value?" | Translate }}</p>
{% endif %}
</div>
<div class="ContentFooter Center">
{% if ModificationAllowed == "1" and OTRSBusinessIsInstalled == "1" %}
<button id="ResetConfirm" class="Primary CallForAction">
<span>{{ "Reset" | Translate }}</span>
</button>
{% else %}
<button id="ResetConfirm" class="Primary CallForAction">
<span>{{ "Confirm" | Translate }}</span>
</button>
{% endif %}
<button class="CallForAction CloseDialog" value="{{ "Cancel" | Translate }}">
<span>{{ "Cancel" | Translate }}</span>
</button>
</div>
</div>
|