Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 551b5ac6

Von Hans Peter Schlaepfer vor mehr als 5 Jahren hinzugefügt

  • ID 551b5ac6c485e8ad3f3baac1be670151da014663
  • Vorgänger 51930364
  • Nachfolger eae4302d

Neues kivitendo Design Aenderungen in templates/webpages/bank_transactions/..

Unterschiede anzeigen:

templates/webpages/bank_transactions/_filter.html
1
[%- USE T8 %]
2
[%- USE L %]
3
[%- USE LxERP %]
4
[%- USE HTML %]
1
[% USE T8 %]
2
[% USE L %]
3
[% USE LxERP %]
4
[% USE HTML %]
5

  
5 6
<form action='controller.pl' method='post' id='filter_form'>
6
<div class='filter_toggle'>
7
<a href='#' onClick='javascript:$(".filter_toggle").toggle()'>[% 'Show Filter' | $T8 %]</a>
8
  [% SELF.filter_summary | html %]
9
</div>
10
<div class='filter_toggle' style='display:none'>
11
<a href='#' onClick='javascript:$(".filter_toggle").toggle()'>[% 'Hide Filter' | $T8 %]</a>
12
 <table id='filter_table'>
7
<div class="wrapper">
8

  
9
[% BLOCK filter_toggle_panel %]
10
<table id='filter_table' class="tbl-horizontal">
11
  <tbody>
13 12
    <tr>
14
     <th align="right">[% 'Bank account' | $T8 %]</th>
15
     <td>[% L.select_tag('filter.local_bank_account_id', BANK_ACCOUNTS, default=filter.local_bank_account_id, title_key='displayable_name', with_empty=1, style='width:500px') %]</td>
13
      <th>[% 'Bank account' | $T8 %]</th>
14
      <td>[% L.select_tag('filter.local_bank_account_id', BANK_ACCOUNTS, default=filter.local_bank_account_id, title_key='displayable_name', with_empty=1, class='wi-verywide') %]</td>
16 15
    </tr>
17

  
18 16
    <tr>
19
     <th align="right">[% 'Transdate from' | $T8 %]</th>
20
     <td>[% L.date_tag('filter.transdate:date::ge', filter.transdate_date__ge) %]</td>
17
      <th>[% 'Transdate from' | $T8 %]</th>
18
      <td><span class="wi-date">[% L.date_tag('filter.transdate:date::ge', filter.transdate_date__ge) %]</span></td>
21 19
    </tr>
22

  
23 20
    <tr>
24
     <th align="right">[% 'Transdate to' | $T8 %]</th>
25
     <td>[% L.date_tag('filter.transdate:date::le', filter.transdate_date__le) %]</td>
21
      <th>[% 'Transdate to' | $T8 %]</th>
22
      <td><span class="wi-date">[% L.date_tag('filter.transdate:date::le', filter.transdate_date__le) %]</span></td>
26 23
    </tr>
27

  
28 24
    <tr>
29
     <th align="right">[% 'Valutadate from' | $T8 %]</th>
30
     <td>[% L.date_tag('filter.valutadate:date::ge', filter.valutadate_date__ge) %]</td>
25
      <th>[% 'Valutadate from' | $T8 %]</th>
26
      <td><span class="wi-date">[% L.date_tag('filter.valutadate:date::ge', filter.valutadate_date__ge) %]</span></td>
31 27
    </tr>
32

  
33 28
    <tr>
34
     <th align="right">[% 'Valutadate to' | $T8 %]</th>
35
     <td>[% L.date_tag('filter.valutadate:date::le', filter.valutadate_date__le) %]</td>
29
      <th>[% 'Valutadate to' | $T8 %]</th>
30
      <td><span class="wi-date">[% L.date_tag('filter.valutadate:date::le', filter.valutadate_date__le) %]</span></td>
36 31
    </tr>
37

  
38 32
    <tr>
39
     <th align="right">[% 'Remote name' | $T8 %]</th>
40
     <td>[% L.input_tag('filter.remote_name:substr::ilike', filter.remote_name_substr__ilike, size=60, class='initial_focus') %]</td>
33
      <th>[% 'Remote name' | $T8 %]</th>
34
      <td>[% L.input_tag('filter.remote_name:substr::ilike', filter.remote_name_substr__ilike, class='initial_focus wi-verywide') %]</td>
41 35
    </tr>
42

  
43 36
    <tr>
44
     <th align="right">[% 'Remote account number' | $T8 %]</th>
45
     <td>[% L.input_tag('filter.remote_account_number:substr::ilike', filter.remote_account_number_substr__ilike, size=60, class='initial_focus') %]</td>
37
      <th>[% 'Remote account number' | $T8 %]</th>
38
      <td>[% L.input_tag('filter.remote_account_number:substr::ilike', filter.remote_account_number_substr__ilike, class='initial_focus wi-verywide') %]</td>
46 39
    </tr>
47

  
48 40
    <tr>
49
     <th align="right">[% 'Remote bank code' | $T8 %]</th>
50
     <td>[% L.input_tag('filter.remote_bank_code:substr::ilike', filter.remote_bank_code_substr__ilike, size=60, class='initial_focus') %]</td>
41
      <th>[% 'Remote bank code' | $T8 %]</th>
42
      <td>[% L.input_tag('filter.remote_bank_code:substr::ilike', filter.remote_bank_code_substr__ilike, size=60, class='initial_focus wi-small') %]</td>
51 43
    </tr>
52

  
53 44
    <tr>
54
     <th align="right">[% 'Amount' | $T8 %]</th>
55
     <td>[% L.input_tag('filter.amount:number', filter.amount_number, size = 20) %]</td>
45
      <th>[% 'Amount' | $T8 %]</th>
46
      <td>[% L.input_tag('filter.amount:number', filter.amount_number, class="wi-small") %]</td>
56 47
    </tr>
57

  
58 48
    <tr>
59
     <th align="right">[% 'Purpose' | $T8 %]</th>
60
     <td>[% L.input_tag('filter.purpose:substr::ilike', filter.purpose_substr__ilike, size=60, class='initial_focus') %]</td>
49
      <th>[% 'Purpose' | $T8 %]</th>
50
      <td>[% L.input_tag('filter.purpose:substr::ilike', filter.purpose_substr__ilike, size=60, class='initial_focus wi-verywide') %]</td>
61 51
    </tr>
62
 </table>
52
  </tbody>
53
</table>
63 54

  
64 55
[% L.hidden_tag('sort_by', FORM.sort_by) %]
65 56
[% L.hidden_tag('sort_dir', FORM.sort_dir) %]
66 57
[% L.hidden_tag('page', FORM.page) %]
67

  
68
[% L.button_tag('$("#filter_form").resetForm()', LxERP.t8('Reset')) %]
58
<div class="buttons">
59
  [% L.button_tag('$("#filter_form").resetForm()', LxERP.t8('Reset'), class='neutral') %]
69 60
</div>
61
[% END %]
62

  
63

  
64
[% INCLUDE 'common/toggle_panel.html'%]
65

  
66
</div><!-- /.wrapper -->
70 67

  
71 68
</form>

Auch abrufbar als: Unified diff