File: AgentPreferencesForm.dtl

package info (click to toggle)
otrs2 2.2.7-2lenny3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 13,444 kB
  • ctags: 5,808
  • sloc: perl: 129,825; xml: 16,139; sql: 11,400; sh: 1,198; makefile: 31; php: 16
file content (97 lines) | stat: -rw-r--r-- 3,316 bytes parent folder | download
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
# --
# AgentPreferencesForm.dtl - provides HTML form for AgentPreferences
# Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
# --
# $Id: AgentPreferencesForm.dtl,v 1.22 2006/12/21 16:13:13 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.
# --

<!-- dtl:block:Body -->
<table border="0" width="100%" cellspacing="0" cellpadding="3">
  <tr align="center">
<!-- dtl:block:Head -->
    <td width="33%" class="mainhead">
      $Env{"Box0"}$Text{"$QData{"Header"}"}$Env{"Box1"}
    </td>
<!-- dtl:block:Head -->
  </tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="3">
  <tr align="center">
<!-- dtl:block:Colum -->
    <td width="33%" class="mainbody">
<!-- dtl:block:Item -->
      <table border="0" width="100%" cellspacing="0" cellpadding="3">
        <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"}" 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:Block -->
<!-- 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>
                      <a href="">$QData{"Filename"}</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 -->
<!-- dtl:block:Block -->
                </table>
              </p>
              <input class="button" type="submit" value="$Text{"Update"}">
            </form>
          </td>
        </tr>
        <tr>
          <td class="contentfooter">
            &nbsp;
          </td>
        </tr>
      </table>
      <br>
<!-- dtl:block:Item -->
    </td>
<!-- dtl:block:Colum -->
  </tr>
</table>
<!-- dtl:block:Body -->