This commit is contained in:
2024-10-14 00:08:40 +02:00
parent dbfba56f66
commit 1462d52e13
4572 changed files with 2658864 additions and 0 deletions

View File

@@ -0,0 +1,101 @@
# --
# Copyright (C) 2001-2019 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 class="AppointmentTooltip Hidden">
<div class="Icons">
{% if CalEvent.allDay %}
<i class="fa fa-sun-o" />
{% endif %}
{% if CalEvent.recurring %}
<i class="fa fa-repeat" />
{% endif %}
{% if CalEvent.parentId %}
<i class="fa fa-link" />
{% endif %}
{% if CalEvent.notification %}
<i class="fa fa-bell" />
{% endif %}
{% if CalEvent.ticketAppointmentType %}
<i class="fa fa-char-{{ TicketAppointmentConfig[CalEvent.ticketAppointmentType].Mark }}" />
{% endif %}
</div>
<fieldset>
<legend><span>{{ 'Basic information' | Translate }}</span></legend>
<label>{{ 'Title' | Translate }}:</label>
<p class="Value">{{ CalEvent.title }}</p>
<div class="Clear"></div>
{% if CalEvent.description %}
<label>{{ 'Description' | Translate }}:</label>
<p class="Value">{{ CalEvent.description }}</p>
<div class="Clear"></div>
{% endif %}
{% if CalEvent.location %}
<label>{{ 'Location' | Translate }}:</label>
<p class="Value">{{ CalEvent.location }}</p>
<div class="Clear"></div>
{% endif %}
<label>{{ 'Calendar' | Translate }}:</label>
<p class="Value">
<span class="Flag Small">
<span class="CalendarColor" style="background-color: {{ CalEvent.calendarColor }}"></span>
</span>
{{ CalEvent.calendarName }}
</p>
<div class="Clear"></div>
</fieldset>
{% if TooltipTemplateResource and CalEvent.teamNames %}
<fieldset>
<legend><span>{{ 'Resource' | Translate }}</span></legend>
<label>{{ 'Team' | Translate }}:</label>
<p class="Value"> {{ CalEvent.teamNames | escape | replace('\\n', '<br>') | safe }}</p>
<div class="Clear"></div>
{% if CalEvent.resourceNames %}
<label>{{ 'Agent' | Translate }}:</label>
<p class="Value">{{ CalEvent.resourceNames | escape | replace('\\n', '<br>') | safe }}</p>
<div class="Clear"></div>
{% endif %}
</fieldset>
{% endif %}
<fieldset>
<legend><span>{{ 'Date/Time' | Translate }}</span></legend>
<label>{{ 'Start date' | Translate }}:</label>
<p class="Value">{{ CalEvent.startDate }}</p>
<div class="Clear"></div>
<label>{{ 'End date' | Translate }}:</label>
<p class="Value">{{ CalEvent.endDate }}</p>
<div class="Clear"></div>
{% if CalEvent.allDay %}
<label>{{ 'All-day' | Translate }}:</label>
<p class="Value">{{ 'Yes' | Translate }}</p>
<div class="Clear"></div>
{% endif %}
{% if CalEvent.recurring %}
<label>{{ 'Repeat' | Translate }}:</label>
<p class="Value">{{ 'Yes' | Translate }}</p>
<div class="Clear"></div>
{% endif %}
</fieldset>
{% if CalEvent.pluginData %}
<fieldset>
<legend><span>{{ 'Link' | Translate }}</span></legend>
{% for PluginKey, PluginValue in PluginList %}
<label>{{ PluginValue.PluginName }}:</label>
<p class="Value">{{ CalEvent.pluginData[PluginKey] | escape | replace('\\n', '<br>') | safe }}</p>
<div class="Clear"></div>
{% endfor %}
</fieldset>
{% endif %}
{% if CalEvent.notificationDate %}
<fieldset>
<legend><span>{{ 'Notification' | Translate }}</span></legend>
<label>{{ 'Notification' | Translate }}:</label>
<p class="Value">{{ CalEvent.notificationDate }}</p>
<div class="Clear"></div>
</fieldset>
{% endif %}
</div>

View File

@@ -0,0 +1,19 @@
# --
# Copyright (C) 2001-2019 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>
<form id="ContextSettingsDialogCalendarOverview" class="">
<fieldset class="TableLike FixedLabelSmall">
<label for="ShownAppointments">{{ 'Show' | Translate }}:</label>
<div class="Field">
{{ ShownAppointmentsStrg | safe }}
</div>
<div class="Clear"></div>
</fieldset>
</form>
</div>

View File

@@ -0,0 +1,58 @@
# --
# Copyright (C) 2001-2019 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>

View File

@@ -0,0 +1,23 @@
# --
# Copyright (C) 2001-2019 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="Field SpacingTopSmall">
<label for="SearchParam" class="Mandatory">
<span class="Marker">*</span>
</label>
{{ SearchParamUser | safe }}
<input id="SearchParam" name="SearchParam" type="text" class="Validate_Required" />
<div id="SearchParamError" class="TooltipErrorMessage"><p>{{ 'This field is required.' | Translate }}</p></div>
<a class="RemoveButton" title="{{ 'Remove this entry' | Translate }}" href="#">
<i class="fa fa-minus-square-o"></i>
<span class="InvisibleText">{{ 'Remove' | Translate }}</span>
</a>
</div>
<div class="Clear"></div>
</div>