|
14 | 14 |
|
15 | 15 | <h1 class="nhsuk-heading-l">{{ pageName }}</h1> |
16 | 16 |
|
17 | | - <table class="nhsuk-table"> |
18 | | - <thead role="rowgroup" class="nhsuk-table__head"> |
19 | | - <tr role="row"> |
20 | | - <th rowspan="2" class="app-table__header--border-right app-table__header--align-bottom app-table__header--border-top"> |
21 | | - Name |
22 | | - </th> |
23 | | - <th colspan="1" rowspan="2" class="app-table__header--align-bottom app-table__header--border-right app-table__header--padding-left app-table__header--border-top nhsuk-table__header--numeric"> |
24 | | - Organisations |
25 | | - </th> |
26 | | - <th colspan="3" class="app-table__header--padding-left nhsuk-table__header--centred app-table__header--border-right app-table__header--border-top"> |
27 | | - Users |
28 | | - </th> |
29 | | - <th colspan="4" class="app-table__header--padding-left nhsuk-table__header--centred app-table__header--border-top"> |
30 | | - Vaccinations |
31 | | - </th> |
32 | | - </tr> |
33 | | - <tr role="row"> |
34 | | - |
35 | | - <th class="app-table__header--padding-left nhsuk-table__header--numeric "> |
36 | | - Lead |
37 | | - </th> |
38 | | - <th class="nhsuk-table__header--numeric app-table__header--align-bottom"> |
39 | | - Admin |
40 | | - </th> |
41 | | - <th class="nhsuk-table__header--numeric app-table__header--border-right app-table__header--align-bottom"> |
42 | | - Recorder |
43 | | - </th> |
44 | | - <th class="app-table__header--padding-left nhsuk-table__header--numeric app-table__header--align-bottom"> |
45 | | - COVID |
46 | | - </th> |
47 | | - <th class="app-table__header--padding-left nhsuk-table__header--numeric app-table__header--align-bottom"> |
48 | | - Flu |
49 | | - </th> |
50 | | - <th class="nhsuk-table__header--numeric app-table__header--align-bottom"> |
51 | | - RSV |
52 | | - </th> |
53 | | - <th class="nhsuk-table__header--numeric app-table__header--align-bottom"> |
54 | | - Pertussis |
55 | | - </th> |
56 | | - </tr> |
57 | | - </thead> |
58 | | - <tbody class="nhsuk-table__body"> |
59 | | - {% for region in (data.regions | sort(false, true, "name")) %} |
60 | | - <tr role="row" class="nhsuk-table__row"> |
61 | | - <th class="nhsuk-table__cell app-table__cell--border-right nhsuk-u-font-weight-normal"><a href="/support/regions/{{ region.id }}">{{ region.name }}</a></th> |
62 | | - <td class="nhsuk-table__cell app-table__cell--padding-left app-table__cell--border-right nhsuk-table__cell--numeric">150</td> |
63 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric">103</td> |
64 | | - <td class="nhsuk-table__cell nhsuk-table__cell--numeric">150</td> |
65 | | - <td class="nhsuk-table__cell nhsuk-table__cell--numeric app-table__cell--border-right">501</td> |
66 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric">1,014</td> |
67 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric">304</td> |
68 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric">734</td> |
69 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric">16</td> |
70 | | - </tr> |
71 | | - {% endfor %} |
72 | | - </tbody> |
73 | | - <tfoot> |
74 | | - <tr role="row" class="nhsuk-table__row nhsuk-table__row--bold"> |
75 | | - <th class="nhsuk-table__cell app-table__cell--border-right ">Total</th> |
76 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric nhsuk-table__cell app-table__cell--border-right">1,050</td> |
77 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric">721</td> |
78 | | - <td class="nhsuk-table__cell nhsuk-table__cell--numeric">1,050</td> |
79 | | - <td class="nhsuk-table__cell nhsuk-table__cell nhsuk-table__cell--numeric app-table__cell--border-right">3,507</td> |
80 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric">7,098</td> |
81 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric">2,128</td> |
82 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric">5,138</td> |
83 | | - <td class="nhsuk-table__cell app-table__cell--padding-left nhsuk-table__cell--numeric">112</td> |
84 | | - </tr> |
85 | | - </tfoot> |
86 | | - </table> |
87 | | - |
88 | | - |
| 17 | + <ul> |
| 18 | + {% for region in (data.regions | sort(false, true, "name")) %} |
| 19 | + <li><a href="/support/regions/{{ region.id }}">{{ region.name }}</a></li> |
| 20 | + {% endfor %} |
| 21 | + </ul> |
89 | 22 |
|
90 | 23 | </div> |
91 | 24 | </div> |
|
0 commit comments