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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
# --
# AdminSysConfig.dtl - provides HTML form for AdminSysConfig html
# Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
# --
# $Id: AdminSysConfig.dtl,v 1.17 2007/06/28 23:55:33 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 form -->
<table border="0" width="100%" cellspacing="0" cellpadding="3">
<tr>
<td colspan="2" class="mainhead">
$Env{"Box0"}$Text{"SysConfig"}$Env{"Box1"}
</td>
</tr>
<tr>
<td width="30%" class="mainbody">
<form action="$Env{"CGIHandle"}" method="get">
<input type="hidden" name="Action" value="$Env{"Action"}">
<input type="hidden" name="Subaction" value="Search">
<table width="100%" cellspacing="0" cellpadding="4">
<tr>
<td class="contenthead">$Text{"Search"} ($QData{"ConfigCounter"}):</td>
</tr>
<tr>
<td class="contentbody">
<table>
<tr>
<td class="contentkey">$Text{"Search for"}:</td>
<td class="contentvalue"><input type="text" name="Search" value="$QData{"Search"}" size="25"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="contentfooter">
<input class="button" type="submit" value="$Text{"Search"}">
</td>
</tr>
</table>
</form>
<br>
<form action="$Env{"CGIHandle"}" method="post">
<input type="hidden" name="Action" value="$Env{"Action"}">
<input type="hidden" name="Subaction" value="SelectGroup">
<input type="hidden" name="DontWriteDefault" value="1">
<table width="100%" cellspacing="0" cellpadding="4">
<tr>
<td class="contenthead">$Text{"Group selection"}:</td>
</tr>
<tr>
<td class="contentbody">
<table>
<tr>
<td class="contentkey">$Text{"Group"}:</td>
<td class="contentvalue">$Data{"Liste"}</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="contentfooter">
<input class="button" type="submit" name="" value="$Text{"Show"}">
</td>
</tr>
</table>
</form>
<br>
<!-- dtl:block:Download -->
<form action="$Env{"CGIHandle"}" method="get">
<input type="hidden" name="Action" value="$Env{"Action"}">
<input type="hidden" name="Subaction" value="Download">
<table width="100%" cellspacing="0" cellpadding="4">
<tr>
<td class="contenthead">$Text{"Download Settings"}:</td>
</tr>
<tr>
<td class="contentbody">
<table>
<tr>
<td class="contentvalue">$Text{"Download all system config changes."}</td>
<td class="contentvalue"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="contentfooter">
<input class="button" type="submit" value="$Text{"Download"}">
</td>
</tr>
</table>
</form>
<br>
<!-- dtl:block:Download -->
<form action="$Env{"CGIHandle"}" method="post" enctype="multipart/form-data">
<input type="hidden" name="Action" value="$Env{"Action"}">
<input type="hidden" name="Subaction" value="Upload">
<table width="100%" cellspacing="0" cellpadding="4">
<tr>
<td class="contenthead">$Text{"Load Settings"}:</td>
</tr>
<tr>
<td class="contentbody">
<table border="0" cellspacing="0" cellpadding="3">
<tr>
<td class="contentkey">$Text{"File"}: </td>
<td class="contentvalue"> <input name="file_upload" type="file" size="18" class="fixed"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="contentfooter">
<input class="button" type="submit" value="$Text{"Upload"}">
</td>
</tr>
</table>
</form>
</td>
<td width="70%" class="mainbody">
<table width="100%" cellspacing="0" cellpadding="4">
<tr>
<td class="contenthead">$Text{"Result"}:</td>
</tr>
<tr>
<td class="contentbody">
<table border="0" cellspacing="0" cellpadding="3" width="100%">
<tr>
<td class="contentkey" width="33%">$Text{"Subgroup"}</td>
<td class="contentkey" width="33%">$Text{"Elements"}</td>
<td class="contentkey" width="33%">$Text{"Group"}</td>
</tr>
<!-- dtl:block:Row -->
<dtl if ($Env{"Color"} eq "") { $Env{"Color"} = "searchactive"; }>
<tr>
<td class="$Env{"Color"}">
<a href="$Env{"Baselink"}Action=$Env{"Action"}&Subaction=Edit&SysConfigSubGroup=$LQData{"SubGroup"}&SysConfigGroup=$LQData{"Group"}">$QData{"SubGroup"}</a>
</td>
<td class="$Env{"Color"}">$QData{"SubGroupCount"}</td>
<td class="$Env{"Color"}">$QData{"Group"}</td>
</tr>
<dtl if ($Env{"Color"} eq "searchpassive") { $Env{"Color"} = ""; }>
<dtl if ($Env{"Color"} eq "searchactive") { $Env{"Color"} = "searchpassive"; }>
<!-- dtl:block:Row -->
</table>
</td>
</tr>
<tr>
<td class="contentfooter"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- end form -->
|