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
|
# --
# AgentStatsImport.dtl - provides HTML form for import a stat
# Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
# --
# $Id: AgentStatsImport.dtl,v 1.3 2006/12/21 16:13:14 mh 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 form -->
<table border="0" width="100%" cellspacing="0" cellpadding="3">
<tr>
<td class="mainhead">
$Env{"Box0"}$Text{"Import"}$Env{"Box1"}
</td>
</tr>
<tr>
<td class="mainbody">
<br>
<table border="0" width="700" align="center" cellspacing="0" cellpadding="4">
<form action="$Env{"CGIHandle"}" method="post" enctype="multipart/form-data">
<input type="hidden" name="Action" value="$Env{"Action"}">
<input type="hidden" name="Subaction" value="Import">
<input type="hidden" name="Status" value="Action">
<tr>
<td class="contenthead">$Text{"Import"}</td>
</tr>
<tr class="contentbody">
<td>
<table border="0">
<tr>
<input type="hidden" name="ImportType" value="Upload">
<td class="contentkey" width="150">$Text{"File"}:</td>
<td class="contentvalue"><input name="file_upload" type="file" size="30" class="fixed"></td>
</tr>
<!-- dtl:block:ErrorDoctype1 -->
<tr>
<td class="validity" colspan="2">$Text{"File is not a Stats config"}!</td>
</tr>
<!-- dtl:block:ErrorDoctype1 -->
<!-- dtl:block:ErrorDoctype2 -->
<tr>
<td class="validity" colspan="2">$Text{"No File selected"}!</td>
</tr>
<!-- dtl:block:ErrorDoctype2 -->
</table>
</td>
</tr>
<tr>
<td class="contentfooter">
<input class="button" accesskey="g" type="submit" value="$Text{"Import"}">
</td>
</tr>
</form>
</table>
<br>
</td>
</tr>
</table>
<!-- end form -->
|