-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathineligible.html
More file actions
70 lines (66 loc) · 2.6 KB
/
ineligible.html
File metadata and controls
70 lines (66 loc) · 2.6 KB
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
<!doctype html>
<html lang="en">
<head>
{{ partial "head/boilerplate.html" . }}
{{ partial "head/css-link-bootstrap.html" . }}
{{ partial "head/favicons.html" . }}
{{ partial "head/styles.html" . }}
</head>
<body>
{{ partial "banner/banner.html" . }}
<div class="container">
<div class="card-body">
<h3>Report not available</h3>
<br>
{{ if eq .Params.reason_report_ineligible "condo" }}
<p>
This property is a <strong>condominium unit</strong>. The Assessor uses a separate
valuation model for condos, and that model is not yet compatible with
this report. We hope to add support for condo units soon. Sorry for
the inconvenience!
</p>
{{ else if eq .Params.reason_report_ineligible "non_regression_class" }}
<p>
This property has class code <strong>{{ .Params.char_class }}</strong>.
{{ if .Params.char_class_desc }}
Properties with this code should fit the description
<strong>"{{ .Params.char_class_desc }}"</strong>.
{{ end }}
</p>
<p>
The Assessor's residential model does not estimate the value for this
type of property. The model only estimates values for single-family
homes and multi-family buildings with six or fewer units.
</p>
{{ else if eq .Params.reason_report_ineligible "non_tri" }}
<p>
The Assessor did not reassess this home in
{{ .Params.assessment_year }}. In {{ .Params.assessment_year }},
the Assessor reassessed the <strong>{{ title .Params.assessment_triad_name }}</strong>
triad, but this home is in the <strong>{{ title .Params.meta_triad_name }}</strong>
triad.
</p>
{{ else if eq .Params.reason_report_ineligible "missing_card" }}
<p>
The Assessor's data indicate that this property did not have any
dwellings on it in {{ .Params.assessment_year }}. The Assessor's
residential model does not estimate the value for properties without
dwellings.
</p>
{{ else }}
{{
errorf
"Unexpected reason_report_ineligible for PIN %s: %q"
.Params.pin
.Params.reason_report_ineligible
}}
{{ end }}
<p>
If you believe that this information is incorrect, please
<a href="https://www.cookcountyassessor.com/contact" target="_blank">contact us</a>
and we will do our best to correct the mistake.
</p>
</div>
</div>
</body>
</html>