blob: 933a0594821cd295df48051b737cee183e7dddb5 (
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
|
[%
problem_title = loc('Viewing a problem') | html;
INCLUDE 'header.html'
title = problem_title
robots = 'noindex, nofollow'
%]
<div id="side">
[% IF banner.id %]
<p class="banner" id="[% banner.id %]">
[% banner.text %]
</p>
[% END %]
<h1>Empty property report</h1>
<p><em>[% problem.meta_line(c) | html %]
[% IF problem.council %]
[% IF problem.whensent %]
<small class="council_sent_info"><br>[% problem.duration_string(c) %]</small>
[% END %]
[% ELSE %]
<br><small>[% loc('Not reported to council') %]</small>
[% END %]
</em></p>
</div>
[% INCLUDE 'footer.html' %]
|