File: AgentAppointmentCalendarOverview.tt

package info (click to toggle)
otrs2 6.0.32-6
  • links: PTS
  • area: non-free
  • in suites: bullseye
  • size: 197,336 kB
  • sloc: perl: 1,003,018; javascript: 75,060; xml: 70,883; php: 51,819; sql: 22,361; sh: 379; makefile: 51
file content (117 lines) | stat: -rw-r--r-- 6,218 bytes parent folder | download
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# --
# 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="MainBox ARIARoleMain LayoutFixedSidebar SidebarFirst">
    <h1>[% Translate("Calendar Overview") | html %]</h1>
    <input type="hidden" value="[% Env("UserChallengeToken") %]" name="ChallengeToken" id="ChallengeToken" />
    <div class="SidebarColumn">
        <div class="WidgetSimple">
            <div class="Header">
                <h2>[% Translate("Actions") | html %]</h2>
            </div>
            <div class="Content">
                <ul class="ActionList">
[% IF Data.ModulePermissions.AdminAppointmentCalendarManage %]
                    <li>
                        <a href="[% Env("CGIHandle") %]?Action=AdminAppointmentCalendarManage;Subaction=Overview" class="CallForAction Fullsize Center">
                            <span><i class="fa fa-calendar-o"></i>[% Translate("Manage Calendars") | html %]</span>
                        </a>
                    </li>
[% END %]
[% RenderBlockStart("AppointmentCreateButton") %]
                    <li>
                        <a id="AppointmentCreateButton" href="#" class="CallForAction Fullsize Center" title="[% Translate("Add new Appointment") | html %]">
                            <span><i class="fa fa-plus-square"></i>[% Translate("Add Appointment") | html %]</span>
                        </a>
                    </li>
[% RenderBlockEnd("AppointmentCreateButton") %]
                </ul>
            </div>
        </div>
[% RenderBlockStart("CalendarWidget") %]
        <div class="WidgetSimple">
            <div class="Header">
                <h2>[% Translate("Calendars") | html %]</h2>
            </div>
            <div class="Content">
                <input type="text" id="FilterCalendars" class="FilterBox" placeholder="[% Translate("Just start typing to filter...") | html %]" name="FilterCalendars" value="" title="[% Translate("Filter for calendars") | html %]">
                <table class="DataTable SpacingTopSmall" id="Calendars">
                    <thead>
                        <tr>
                            <th class="W10pc"></th>
                            <th class="W10pc"></th>
                            <th>[% Translate("Name") | html %]</th>
                            <th class="Center W10pc">[% Translate("URL") | html %]</th>
                        </tr>
                    </thead>
                    <tbody>
[% RenderBlockStart("CalendarSwitch") %]
                        <tr class="CalendarSwitch">
                            <td class="Center">
                                <input type="checkbox" id="Calendar[% Data.CalendarID | html %]" name="Calendar[% Data.CalendarID | html %]" data-id="[% Data.CalendarID | html %]" [% Data.Checked %]/>
                            </td>
                            <td class="Flags Center">
                                <label for="Calendar[% Data.CalendarID | html %]">
                                    <div class="Flag Small" title="[% Data.CalendarName | html %]">
                                        <span class="CalendarColor" style="background-color: [% Data.Color | html %];"></span>
                                    </div>
                                </label>
                            </td>
                            <td>
                                <label for="Calendar[% Data.CalendarID | html %]" title="[% Data.CalendarName | html %]">
                                    [% Data.CalendarName | truncate(21) | html %]
                                </label>
                            </td>
                            <td class="Center">
# Use ampersands (&) instead of semicolons (;) for URL parameter delimiter. This has better compatibility with different
#   calendar implementations and will prevent them from re-encoding the query string and essentially strip the data.
#   Please see bug#12667 for more information.
                                <span class="CopyToClipboard InlineButton" data-clipboard-text="[% Config("HttpType") %]://[% Config("FQDN") %]/[% Config("ScriptAlias") %]public.pl?Action=PublicCalendar&CalendarID=[% Data.CalendarID | uri %]&User=[% Env("UserLogin") | uri %]&Token=[% Data.AccessToken | uri %]" title="[% Translate("Copy public calendar URL") | html %]">
                                    <i class="fa fa-clipboard"></i>
                                    <span class="InvisibleText">[% Translate("Copy public calendar URL") | html %]</span>
                                </span>
                            </td>
                        </tr>
[% RenderBlockEnd("CalendarSwitch") %]
                        <tr class="FilterMessage Hidden">
                            <td colspan="4">[% Translate("No matches found.") | html %]</td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>
[% RenderBlockEnd("CalendarWidget") %]
    </div>

    <div class="ContentColumn">
        <div class="WidgetSimple CalendarWidget">
            <div class="Header">
                <div class="ActionMenu">
                    <div class="WidgetAction Settings">
                        <a href="#" id="CalendarSettingsButton" title="[% Translate("Settings") | html %]">
                            <i class="fa fa-cog"></i>
                        </a>
                    </div>
                    <div class="Clear"></div>
                </div>
                <h2>[% Translate("Calendar") | html %]</h2>
            </div>
            <div class="Content ">

[% RenderBlockStart("NoCalendar") %]
                <p>[% Translate("No calendars found. Please add a calendar first by using Manage Calendars page.") | html %]</p>
[% RenderBlockEnd("NoCalendar") %]

[% RenderBlockStart("CalendarDiv") %]
                <div style="width: [% Data.CalendarWidth | html %]%; margin: 0 auto; z-index: 10;" id="calendar"></div>
[% RenderBlockEnd("CalendarDiv") %]

            </div>
        </div>
    </div>
</div>