-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #1060: Start to separate customer and agent templates.
- Loading branch information
Sven
committed
Nov 8, 2021
1 parent
3c315f6
commit 6a07283
Showing
3 changed files
with
43 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
Kernel/Output/HTML/Templates/Standard/ProcessManagement/CustomerDynamicField.tt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# -- | ||
# OTOBO is a web-based ticketing system for service organisations. | ||
# -- | ||
# Copyright (C) 2001-2020 OTRS AG, https://otrs.com/ | ||
# Copyright (C) 2019-2021 Rother OSS GmbH, https://otobo.de/ | ||
# -- | ||
# This program is free software: you can redistribute it and/or modify it under | ||
# the terms of the GNU General Public License as published by the Free Software | ||
# Foundation, either version 3 of the License, or (at your option) any later version. | ||
# This program is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
# -- | ||
|
||
[% RenderBlockStart("rw:DynamicField") %] | ||
<div class="Row Row_DynamicField_[% Data.Name %]"> | ||
<div class="Field"> | ||
[% Data.Content %] | ||
</div> | ||
[% RenderBlockStart("rw:DynamicField:DescriptionLong") %] | ||
<div class="Tooltip"> | ||
<i class="ooofo ooofo-help"></i> | ||
<p>[% Translate(Data.DescriptionLong) | html | html_line_break %]</p> | ||
</div> | ||
[% RenderBlockEnd("rw:DynamicField:DescriptionLong") %] | ||
[% Data.Label %] | ||
[% RenderBlockStart("rw:DynamicField:DescriptionShort") %] | ||
<p class="FieldExplanation ooo12g">[% Translate(Data.DescriptionShort) | html %]</p> | ||
[% RenderBlockEnd("rw:DynamicField:DescriptionShort") %] | ||
<div class="Clear"></div> | ||
</div> | ||
[% RenderBlockEnd("rw:DynamicField") %] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters