aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/base/dashboard/heatmap.html
blob: 42c601a4ccc77f59b9bf3cb00733bbc111766a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[%
    map_js.push(
        '/vendor/HeatmapLayer.js',
        '/cobrands/fixmystreet/density-map.js',
    );
    PROCESS "maps/${map.type}.html";
    SET bodyclass = 'mappage';
    INCLUDE 'header.html',
        title = tprintf(loc('%s - Summary reports'), body.name)
%]

[% map_html | safe %]

</div>
<div id="map_sidebar">
    <div id="side">

    <h1 id="reports_heading">
        [% body.name %]
    </h1>

<div class="full-width">

[% INCLUDE "reports/_list-filters.html", use_form_wrapper = 1 heatmap=1 %]

<input type="hidden" id="body" name="body" value="[% body.id | html %]">

<p class="report-list-filters" style='padding-top:0.25em'>
    [% loc('From') %] <input type="date" id="start_date" name="start_date" class="form-control" value="[% start_date | html %]">
    [% loc('To') %] <input type="date" id="end_date" name="end_date" class="form-control" value="[% end_date | html %]">

<p class="report-list-filters">
[% loc('In wards') %] <select class="form-control js-multiple" multiple id="wards" name="wards">
  [% FOR child IN children.values.sort('name') %]
  [% SET aid = child.id %]
  <option value="[% child.name | html %]"[% ' selected' IF ward_hash.$aid %]>[% child.name %]</option>
  [% END %]
</select>

</div>

<p class="segmented-control segmented-control--radio">
    <input type="radio" name="heatmap" id="heatmap_yes" value="Yes" checked>
    <label class="btn" for="heatmap_yes">[% loc('Heatmap') %]</label>
    <input type="radio" name="heatmap" id="heatmap_no" value="No">
    <label class="btn" for="heatmap_no">[% loc('Pin map') %]</label>
</p>

<div id="js-reports-list">
    [% INCLUDE 'dashboard/heatmap-list.html' %]
</div>

    </div>
</div>
[% INCLUDE 'footer.html' %]