Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 3fc38171

Von Andreas Rudin vor etwa 6 Jahren hinzugefügt

  • ID 3fc381717c5e7f0f657f604880fac7b7be4e492b
  • Vorgänger 9439c4f2
  • Nachfolger a58ef474

HP Aenderungen bis Oktober 2018

Unterschiede anzeigen:

templates/webpages/fu/search.html
13 13
<div class="wrapper">
14 14
  <table class="tbl-horizontal">
15 15
    <tbody>
16
    <tr>
17
      <th>[% 'Created for' | $T8 %]</th>
18
      <td> 
19
        <select name="created_for" class="wi-wider">
20
          <option></option>
21
          [% FOREACH row = EMPLOYEES %] 
22
          <option value="[% HTML.escape(row.id) %]"> 
23
            [% IF row.name %] 
24
              [% HTML.escape(row.name) %] ([% HTML.escape(row.login) %]) 
25
            [% ELSE %] 
26
              [% HTML.escape(row.login) %] 
16
      <tr>
17
        <th>[% 'Created for' | $T8 %]</th>
18
        <td>
19
          <select name="created_for" class="wi-wider">
20
            <option></option>
21
            [% FOREACH row = EMPLOYEES %]
22
            <option value="[% HTML.escape(row.id) %]">
23
              [% IF row.name %]
24
                [% HTML.escape(row.name) %] ([% HTML.escape(row.login) %])
25
              [% ELSE %]
26
                [% HTML.escape(row.login) %]
27
              [% END %]
28
            </option>
27 29
            [% END %]
28
          </option>
29
          [% END %] 
30
        </select>
31
      </td>
32
    </tr>
33
    <tr>
34
      <th>[% 'Subject' | $T8 %]</th>
35
      <td><input type="text" name="subject" class="wi-wider"></td>
36
    </tr>
37
    <tr>
38
      <th>[% 'Body' | $T8 %]</th>
39
      <td><input type="text" name="body" class="wi-wider"></td>
40
    </tr>
41
    <tr>
42
      <th>[% 'Reference' | $T8 %]</th>
43
      <td><input type="text" name="reference" class="wi-wider"></td>
44
    </tr>
45
    <tr>
46
      <th>[% 'Follow-Up Date' | $T8 %]</th>
47
      <td>
48
        [% 'From'      | $T8 %] [% L.date_tag('follow_up_date_from') %] 
49
        [% 'To (time)' | $T8 %] [% L.date_tag('follow_up_date_to'  ) %] 
50
      </td>
51
    </tr>
52
    <tr>
53
      <th>[% 'Created on' | $T8 %]</th>
54
      <td>
55
        [% 'From'      | $T8 %] [% L.date_tag('itime_from') %] 
56
        [% 'To (time)' | $T8 %] [% L.date_tag('itime_to'  ) %]
57
      </td>
58
    </tr>
30
          </select>
31
        </td>
32
      </tr>
33
      <tr>
34
        <th>[% 'Subject' | $T8 %]</th>
35
        <td><input type="text" name="subject" class="wi-wider"></td>
36
      </tr>
37
      <tr>
38
        <th>[% 'Body' | $T8 %]</th>
39
        <td><input type="text" name="body" class="wi-wider"></td>
40
      </tr>
41
      <tr>
42
        <th>[% 'Reference' | $T8 %]</th>
43
        <td><input type="text" name="reference" class="wi-wider"></td>
44
      </tr>
45
      <tr>
46
        <th>[% 'Follow-Up Date' | $T8 %]</th>
47
        <td>
48
          [% 'From'      | $T8 %] [% L.date_tag('follow_up_date_from') %]
49
          [% 'To (time)' | $T8 %] [% L.date_tag('follow_up_date_to'  ) %]
50
        </td>
51
      </tr>
52
      <tr>
53
        <th>[% 'Created on' | $T8 %]</th>
54
        <td>
55
          [% 'From'      | $T8 %] [% L.date_tag('itime_from') %]
56
          [% 'To (time)' | $T8 %] [% L.date_tag('itime_to'  ) %]
57
        </td>
58
      </tr>
59 59
    </tbody>
60 60
  </table>
61 61
</div>
62 62

  
63
<div class="form-addition">
63
<div class="form-addition control-panel">
64 64
  <h3>[% 'Include in Report' | $T8 %]</h3>
65
  <input type="checkbox" name="due_only" id="due_only" value="1" checked>   <label for="due_only">[% 'Only due follow-ups' | $T8 %]</label> <br>
66
  <input type="checkbox" name="all_users" id="all_users" value="1" checked> <label for="all_users">[% 'Other users\' follow-ups' | $T8 %]</label>  <br>
67
  <input type="checkbox" name="not_done" id="not_done" value="1" checked>   <label for="not_done">[% 'Not done yet' | $T8 %]</label>  <br>
68
  <input type="checkbox" name="done" id="done" value="1">                   <label for="done">[% 'Done' | $T8 %]</label>  
65
  <div class="list">
66
    <input type="checkbox" name="due_only" id="due_only" value="1" checked>   <label for="due_only">[% 'Only due follow-ups' | $T8 %]</label> <br>
67
    <input type="checkbox" name="all_users" id="all_users" value="1" checked> <label for="all_users">[% 'Other users\' follow-ups' | $T8 %]</label>  <br>
68
    <input type="checkbox" name="not_done" id="not_done" value="1" checked>   <label for="not_done">[% 'Not done yet' | $T8 %]</label>  <br>
69
    <input type="checkbox" name="done" id="done" value="1">                   <label for="done">[% 'Done' | $T8 %]</label>
70
  </div>
69 71
</div>
70 72

  
71 73
</form>

Auch abrufbar als: Unified diff