Project

General

Profile

Download (2.37 KB) Statistics
| Branch: | Tag: | Revision:

calebasse / calebasse / facturation / templates / facturation / bordereau_not_cmpp_header.html @ 56406192

1
<!doctype html>
2
<html>
3
  <head>
4
    <style>
5
      @page then {
6
        size: a4 landscape;
7
        @frame {
8
          margin: 2cm 1cm;
9
        }
10
        @frame footer {
11
          -pdf-frame-content: footer;
12
          bottom: 0cm;
13
          height: 0.5cm;
14
        }
15
      }
16
      #content td {
17
        text-align: center;
18
      }
19
    </style>
20
  </head>
21
  <body>
22
    <div id="title">Bordereau des actes par code de gestion</div>
23
    <div id="date">
24
      <div>
25
        Édité le {{ now|date:"d/m/Y" }} à {{ now|time:"H:i:s" }}
26
      </div>
27
    </div>
28
    <div id="header-box">
29
      <div id="payee-header">
30
          <table style="padding: 3px; border: 0.5px solid black; height: 5cm;">
31
            <tr style="padding-top: 3px; padding-bottom: 2px; line-height: 50%; background-color: #EEEEEE; margin-bottom: 3cm"><td> Établissement</td></tr>
32
            <tr><td style="height: 5cm; display: block;">
33
            {% block payee %}
34
            {{ service.name }} de SAINT-ETIENNE</br>
35
            66/68, RUE MARENGO</br>
36
            42000 SAINT-ETIENNE</br>
37
            Tél.: 04 77 92 05 70</br>
38
            </br>
39
            Période du {{ start_date|date:"d/m/Y" }} au {{ end_date|date:"d/m/Y" }}</br>
40
            </br>
41
            Nombre de dossiers : {{ total_files }}</br>
42
            Nombre d'actes : {{ total_acts }}</br>
43
            </br>
44
            </br>
45
            </br>
46
            {% endblock %}
47
        </td></tr>
48
        </table>
49
      </div>
50
    <div id="content">
51
      <div style="border: 0.5px solid black; padding-top: 2px; padding-bottom: 3px; line-height: 50%;">
52
      <pdf:nexttemplate name="then"/>
53
      <table>
54
          <thead style="border: none;">
55
            <tr class="batch-columns-header" style="background-color: #EEEEEE;">
56
              <td>Code gestion</td>
57
              <td>Libellé</td>
58
              <td>Nombre d'actes</td>
59
              <td>Nombre de dossiers</td>
60
            </tr>
61
          </thead>
62
          <tbody class="batch-content" style="border: none;">
63
            {% for mc in list_management_codes %}
64
            <tr>
65
              <td>{{ mc.code }}</td>
66
              <td>{{ mc.title }}</td>
67
              <td>{{ mc.nb_acts }}</td>
68
              <td>{{ mc.nb_files }}</td>
69
            </tr>
70
            {% endfor %}
71
          </tbody>
72
      </table>
73
    <div id="footer">
74
      Bordereau des actes par code de gestion page <pdf:pagenumber/>
75
    </div>
76
  </body>
77
</html>
(4-4/13)