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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
# --
# 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 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>
|