aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/index.html
blob: 8f755d4d5b2029060aa5398161e41064b403158c (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[% INCLUDE 'header.html', title => '' %]

[% IF error %]
    <p class="error">[% error %]</p>
[% END %]

<p id="expl">        
    [% 
        subhead
            = c.cobrand.moniker == 'southampton'
            ? '(like graffiti, fly tipping, or broken paving slabs)'
            : loc('(like graffiti, fly tipping, broken paving slabs, or street lighting)');
    %]
    
    <strong>[% loc('Report, view, or discuss local problems') %]</strong>
    
    [% IF subhead != ' ' %]
        <small>[% subhead %]</small>
    [% END %]
</p>

[% TRY %][% INCLUDE 'front/news.html' %][% CATCH file %][% END %]

[%
    question =  c.cobrand.enter_postcode_text();
%]

<form action="[% c.uri_for('/around') %]" method="get" name="postcodeForm" id="postcodeForm">
    <label for="pc">[% question %]:</label>
    <span><input type="text" name="pc" value="" id="pc" size="10" maxlength="200">
    <input type="submit" value="[% loc('Go') %]" id="submit">
    </span>
</form>

<div id="front_intro">

    <h2>[% loc('How to report a problem') %]</h2>
    
    <ol>
        <li>[% question %]</li>
        <li>[% loc('Locate the problem on a map of the area') %]</li>
        <li>[% loc('Enter details of the problem') %]</li>
        <li>[% loc('We send it to the council on your behalf') %]</li>
    </ol>
    
    [% INCLUDE "front/stats.html" %]
    [% TRY %][% INCLUDE "front/tips.html" %][% CATCH file %][% END %]

</div>

[% 
    recent_photos = c.cobrand.recent_photos('front', 3);
    probs         = c.cobrand.recent();
%]


[% IF probs.size || recent_photos.size %]
<div id="front_recent">
    <h2>[% loc('Recently reported problems') %]</h2>
    [% IF recent_photos.size %]
        <p id="front_photos">
        [% FOREACH p IN recent_photos %]
            <a href="/report/[% p.id %]"><img border="0" height="100"
                src="/photo/[% p.id %].tn.jpeg" alt="[% p.title | html %]" title="[% p.title | html %]"></a>
        [% END %]
        </p>
    [% END %]

    [% IF probs.size %]

    
        <ul id="nearby_lists">
        [% FOREACH p IN probs %]
            <li>
                <a href="/report/[% p.id %]">[% p.title | html %]</a>
                <small>[% prettify_epoch( p.confirmed_local.epoch, 1 ) %]</small>
            </li>    
        [% END %]
        </ul>
    [% END %]
</div>
[% END %]

[% INCLUDE 'footer.html' %]