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
|
# --
# 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>
<fieldset class="TableLike SpacingTop">
<legend>
<span>
{{ 'Rule' | Translate }} <span class="RuleNumber"></span>
<a class="RemoveButton" title="{{ 'Remove this entry' | Translate }}" href="#">
<i class="fa fa-minus-square-o"></i>
<span class="InvisibleText">{{ 'Remove' | Translate }}</span>
</a>
</span>
</legend>
<label for="StartDate">
{{ 'Start date' | Translate }}:
</label>
<div class="Field">
{{ TicketAppointments.StartDateStrg | safe }}
</div>
<label for="EndDate">
{{ 'End date' | Translate }}:
</label>
<div class="Field">
{{ TicketAppointments.EndDateStrg | safe }}
</div>
<div class="Field SpacingTop">
<p class="FieldExplanation">
{{ 'Use options below to narrow down for which tickets appointments will be automatically created.' | Translate }}
</p>
</div>
<label for="QueueID" class="Mandatory">
<span class="Marker">*</span>
{{ 'Queues' | Translate }}:
</label>
<div class="Field">
{{ TicketAppointments.QueueIDStrg | safe }}
<div id="QueueIDError" class="TooltipErrorMessage"><p>{{ 'This field is required.' | Translate }}</p></div>
</div>
<div class="Clear"></div>
<label for="SearchParams">
{{ 'Search attributes' | Translate }}:
</label>
<div class="Field SearchParamsContainer">
{{ TicketAppointments.SearchParamsStrg | safe }}
<a class="AddButton" title="{{ 'Add entry' | Translate }}" href="#">
<i class="fa fa-plus-square-o"></i>
<span class="InvisibleText">{{ 'Add' | Translate }}</span>
</a>
</div>
<div class="Clear"></div>
</fieldset>
</div>
|