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
|
# --
# Copyright (C) 2001-2017 OTRS AG, http://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
[% SET OTRSBusinessLabel = '<strong>OTRS Business Solution</strong>™' %]
<div class="MainBox ARIARoleMain LayoutFixedSidebar SidebarFirst">
<h1>[% Translate("Upgrade to %s", OTRSBusinessLabel) %]</h1>
<div class="SidebarColumn">
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate("Hint") | html %]</h2>
</div>
<div class="Content">
<p>
[% Translate("%s makes contact regularly with cloud.otrs.com to check on available updates and the validity of the underlying contract.", OTRSBusinessLabel) %]
</p>
</div>
<div class="Clear"></div>
</div>
</div>
<div class="ContentColumn">
[% RenderBlockStart("NotAvailable") %]
<div class="WidgetSimple">
<div class="Header Center">
<h2>[% Translate("Upgrade to %s", OTRSBusinessLabel) %]</h2>
</div>
<div class="Content">
<p class="Center">
[% Translate("%s will be available soon. Please check again in a few days.", OTRSBusinessLabel) %]
</p>
<p class="Center">
[% Translate("Please have a look at %s for more information.", '<a href="http://www.otrs-business-solution.com" target="_blank">otrs-business-solution.com</a>') %]
</p>
</div>
<div class="Clear"></div>
</div>
[% RenderBlockEnd("NotAvailable") %]
[% RenderBlockStart("NotRegistered") %]
<div class="WidgetSimple">
<div class="Header Center">
<h2>[% Translate("Upgrade to %s", OTRSBusinessLabel) %]</h2>
</div>
<div class="Content">
<p class="Center">
[% Translate("Your OTRS Free is the base for all future actions. Please register first before you continue with the upgrade process of %s!", OTRSBusinessLabel) %]
</p>
[% IF Config("Frontend::Module").AdminRegistration %]
<div class="Center SpacingTop">
<a href="[% Env("Baselink") %]Action=AdminRegistration" class="CallForAction Primary">
<span><i class="fa fa-sign-in"></i> [% Translate("Register this System") | html %]</span>
</a>
</div>
[% ELSE %]
<div class="Center SpacingTop">
<p>
[% Translate("System Registration is disabled for your system. Please check your configuration.") %]
</p>
</div>
[% END %]
</div>
<div class="Clear"></div>
</div>
[% RenderBlockEnd("NotRegistered") %]
[% RenderBlockStart("NotEntitled") %]
<div class="WidgetSimple">
<div class="Header Center">
<h2>[% Translate("Upgrade to %s", OTRSBusinessLabel) %]</h2>
</div>
<div class="Content">
<p class="Center">
[% Translate('Before you can benefit from %s, please contact %s to get your %s contract.', OTRSBusinessLabel, '<a href="mailto:sales@otrs.com">sales@otrs.com</a>', OTRSBusinessLabel) %]
</p>
</div>
<div class="Clear"></div>
</div>
[% RenderBlockEnd("NotEntitled") %]
[% RenderBlockStart("EntitlementStatusUnclear") %]
<div class="WidgetSimple">
<div class="Header Center">
<h2>[% Translate("Upgrade to %s", OTRSBusinessLabel) %]</h2>
</div>
<div class="Content">
<p class="Center">
[% Translate("Connection to cloud.otrs.com via HTTPS couldn't be established. Please make sure that your OTRS can connect to cloud.otrs.com via port 443.") | html %]
</p>
</div>
<div class="Clear"></div>
</div>
[% RenderBlockEnd("EntitlementStatusUnclear") %]
[% RenderBlockStart("Install") %]
<div class="WidgetSimple">
<div class="Header Center">
<h2>[% Translate("Upgrade to %s", OTRSBusinessLabel) %]</h2>
</div>
<div class="Content">
<p class="Center">
[% Translate("With your existing contract you can only use a small part of the %s.", OTRSBusinessLabel ) %]
<br/>
[% Translate("If you would like to take full advantage of the %s get your contract upgraded now! Contact %s.", OTRSBusinessLabel, '<a href="mailto:sales@otrs.com">sales@otrs.com</a>') %]
</p>
<div class="Center SpacingTop">
<a href="[% Env("Baselink") %]Action=[% Env("Action") %];Subaction=InstallAction" class="CallForAction Primary"><span><i class="fa fa-angle-double-up"></i> [% Translate("Upgrade to %s", OTRSBusinessLabel) %]</span></a>
</div>
</div>
<div class="Clear"></div>
</div>
[% RenderBlockEnd("Install") %]
</div>
</div>
|