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
|
# --
# ArticleTicketPlain.dtl - provides HTML plain article
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: AgentTicketPlain.dtl,v 1.2 2005/07/23 12:07:34 martin Exp $
# --
# 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 http://www.gnu.org/licenses/gpl.txt.
# --
<!-- start plain article -->
<table border="0" width="100%" cellspacing="0" cellpadding="3">
<tr>
<td class="mainhead">
$Env{"Box0"}$Text{"Plain"} $Config{"Ticket::Hook"}: $Data{"TicketNumber"} / $Text{"TicketID"}: $Data{"TicketID"} / $Text{"ArticleID"}: $Data{"ArticleID"}$Env{"Box1"}
</td>
</tr>
<tr>
<td class="menu">
<a href="$Env{"Baselink"}$Env{"LastScreenView"}" onmouseover="window.status='$Text{"Back"}'; return true;" onmouseout="window.status='';">$Text{"Back"}</a>
- <a href="$Env{"Baselink"}Action=$Env{"Action"}&Subaction=Download&TicketID=$Data{"TicketID"}&ArticleID=$Data{"ArticleID"}" onmouseover="window.status='$Text{"Download"}'; return true;" onmouseout="window.status='';">$Text{"Download"}</a>
</td>
</tr>
<tr>
<td class="mainbody">
<div class="message">
$Data{"Text"}
</div>
</td>
</tr>
</table>
<!-- end plain article -->
|