Umstellung der HTML-Vorlagen aus templates/webpages/report_generator von HTML::Templa...
[kivitendo-erp.git] / templates / webpages / report_generator / csv_export_options_de.html
1 [% USE HTML %]<body>
2
3  <script type="text/javascript">
4   <!--
5       function submit_report_generator_form(nextsub) {
6         document.report_generator_form.report_generator_dispatch_to.value = nextsub;
7         document.report_generator_form.submit();
8       }
9
10     -->
11  </script>
12
13  <div class="listheading" width="100%">[% HTML.escape(title) %]</div>
14
15  <form action="[% HTML.escape(script) %]" method="post" name="report_generator_form">
16
17   [%- FOREACH var = HIDDEN %]
18   <input type="hidden" name="[% HTML.escape(var.key) %]" value="[% HTML.escape(var.value) %]">
19   [%- END %]
20
21   <input type="hidden" name="report_generator_csv_options_set" value="1">
22   <input type="hidden" name="report_generator_dispatch_to" value="">
23   <input type="hidden" name="action" value="report_generator_dispatcher">
24
25   <table>
26    <tr>
27     <td align="right">Anf&uuml;hrungszeichen</td>
28     <td>
29      <select name="report_generator_csv_options_quote_char" style="width: 300px">
30       <option value="&quot;" selected>&quot;</option>
31       <option value="'">'</option>
32      </select>
33     </td>
34    </tr>
35
36    <tr>
37     <td align="right">Escape-Zeichen</td>
38     <td>
39      <select name="report_generator_csv_options_escape_char" style="width: 300px">
40       <option value="QUOTE_CHAR" selected>Wie Anf&uuml;hrungszeichen</option>
41       <option value="&quot;">&quot;</option>
42       <option value="'">'</option>
43      </select>
44     </td>
45    </tr>
46
47    <tr>
48     <td align="right">Feldtrennzeichen</td>
49     <td>
50      <select name="report_generator_csv_options_sep_char" style="width: 300px">
51       <option value=";" selected>;</option>
52       <option value=",">,</option>
53       <option value=":">:</option>
54       <option value="TAB">TAB (Das Tabulator-Symbol)</option>
55      </select>
56     </td>
57    </tr>
58
59    <tr>
60     <td align="right">Zeilenumbr&uuml;che</td>
61     <td>
62      <select name="report_generator_csv_options_eol_style" style="width: 300px">
63       <option value="DOS">DOS/Windows (CR/LF)</option>
64       <option value="Unix" selected>Unix (LF)</option>
65      </select>
66     </td>
67    </tr>
68
69    <tr>
70     <td align="right" valign="top">Optionen:</td>
71     <td valign="top">
72      <input type="checkbox" name="report_generator_csv_options_headers" value="1" checked>
73      Spalten&uuml;berschriften erzeugen
74     </td>
75    </tr>
76
77   </table>
78
79   <p>
80    <button type="button" class="submit" onclick="submit_report_generator_form('report_generator_export_as_csv')">Als CSV exportieren</button>
81    <button type="button" class="submit" onclick="submit_report_generator_form('report_generator_back')">Zurück</button>
82   </p>
83
84  </form>
85 </body>
86 </html>