File: CustomerPreferencesForm.dtl

package info (click to toggle)
otrs2 2.0.4p01-18
  • links: PTS
  • area: main
  • in suites: etch
  • size: 7,900 kB
  • ctags: 4,437
  • sloc: perl: 81,607; xml: 8,135; sql: 8,013; sh: 1,113; makefile: 22; php: 16
file content (88 lines) | stat: -rw-r--r-- 2,905 bytes parent folder | download | duplicates (2)
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
# --
# CustomerPreferencesForm.dtl - provides HTML form for CustomerPreferences 
# Copyright (C) 2001-2004 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: CustomerPreferencesForm.dtl,v 1.5 2004/12/28 01:03:00 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.
# --
<!-- dtl:block:Body -->
<table border="0" width="100%" cellspacing="0" cellpadding="3" cols="2">
<tr align="center">
<!-- dtl:block:Head -->
  <td width="50%" class="mainhead">
    <b>$Env{"Box0"}$Text{"$QData{"Header"}"}$Env{"Box1"}</b>
  </td>
<!-- dtl:block:Head -->
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="1" cols="2">
<tr align="center" valign="top">
<!-- dtl:block:Colum -->
  <td width="50%" class="mainbody">
<!-- dtl:block:Item -->
    <table border="0" width="100%" cellspacing="0" cellpadding="3" cols="1">
    <tr align="center">
      <td class="contenthead">
        $Env{"Box0"}$Text{"$Data{"Label"}"}$Env{"Box1"}
      </td>
    </tr>
    <tr align="center">
      <td class="contentbody">
      <p>
      $Text{"$Data{"Desc"}"}
      </p>
      <form action="$Env{"CGIHandle"}" enctype="multipart/form-data" method="post">
      <input type="hidden" name="Action" value="$Env{"Action"}">
      <input type="hidden" name="Subaction" value="Update">
      <input type="hidden" name="Group" value="$QData{"Group"}">
      <p>
      <table border="0">
<!-- dtl:block:InputKey -->
      <tr>
        <td>$Text{"$QData{"Key"}"}:</td>
        <td><input type="text" name="$QData{"Name"}" value="$QData{"SelectedID"}" size="12"></td>
      </tr>
<!-- dtl:block:InputKey -->
<!-- dtl:block:Input -->
      <tr>
        <td>$Text{"$QData{"Key"}"}</td>
        <td><input type="text" name="$QData{"Name"}" value="$QData{"SelectedID"}" size="12"></td>
      </tr>
<!-- dtl:block:Input -->
<!-- dtl:block:Option -->
      <tr>
        <td>$Text{"$QData{"Key"}"}</td>
        <td>$Data{"Option"}</td>
      </tr>
<!-- dtl:block:Option -->
<!-- dtl:block:Upload -->
      <tr>
        <td>$Text{"$QData{"Key"}"}</td>
        <td><input name="$QData{"Name"}" type="file" size="20" class="fixed"><br>
        <div title="$QData{"Filename"}">$QData{"Filename","30"}</div>
#<a href="" title="$QData{"Filename"}">$QData{"Filename","30"}</a>
        </td>
      </tr>
<!-- dtl:block:Upload -->
<!-- dtl:block:Password -->
      <tr>
        <td>$Text{"$QData{"Key"}"}:</td>
        <td><input type="password" name="$QData{"Name"}" value="" size="12"></td>
      </tr>
<!-- dtl:block:Password -->
      </table>
      </p>
      <input class="button" type="submit" value="$Text{"update"}">
      </form>
      </td>
    </tr>
    </table>
<!-- dtl:block:Item -->
  </td>
<!-- dtl:block:Colum -->
</tr>
</table>
<!-- dtl:block:Body -->