2 {{#*inline "partial_details_one_row"}}
3 <tr class="{{isaddresses_unused this}}">
8 <span class="noname">No Name</span>
11 <td>{{this.class}}:{{this.type}}</td>
12 <td>{{osmLink this}}</td>
13 <td>{{this.rank_address}}</td>
14 <td>{{formatAdminLevel this.admin_level}}</td>
15 <td>{{formatDistance this.distance}}</td>
16 <td>{{detailsLink this}}</td>
20 {{#*inline "partial_details_keyword_one_row"}}
22 <td>{{formatKeywordToken this.word_token}}</td>
24 <td>word id: {{this.word_id}}</td>
30 {{#*inline "partial_h2"}}
31 <tr class="all-columns"><td colspan="6"><h2>{{this}}</h2></td></tr>
34 {{#*inline "partial_h3"}}
35 <tr class="all-columns"><td colspan="6"><h3>{{this}}</h3></td></tr>
38 <div class="container">
40 <div class="col-sm-10">
41 <h1>{{aPlace.localname}}</h1>
43 <div class="col-sm-2 text-right">
44 {{formatMapIcon aPlace.icon}}
48 <div class="col-md-6">
49 <table id="locationdetails" class="table table-striped">
53 {{#each aPlace.aNames}}
54 <div class="line"><span class="name">{{this}}</span> ({{@key}})</div>
60 <td>{{aPlace.class}}:{{aPlace.type}}</td>
64 <td>{{aPlace.indexed_date}}</td>
68 <td>{{aPlace.admin_level}}</td>
72 <td>{{aPlace.rank_search_label}}</td>
74 {{#if aPlace.calculated_importance}}
78 {{aPlace.calculated_importance}}
79 {{#unless aPlace.importance}} (estimated){{/unless}}
85 <td>{{coverageType aPlace}}</td>
89 <td>{{aPlace.lat}},{{aPlace.lon}}</td>
93 <td>{{osmLink aPlace}}
95 {{#if aPlace.wikipedia}}
97 <td>Wikipedia Calculated</td>
98 <td>{{wikipediaLink aPlace}}</td>
102 <td>Computed Postcode</td>
103 <td>{{aPlace.postcode}}</td>
106 <td>Address Tags</td>
108 {{#each aPlace.aAddressTags}}
109 <div class="line"><span class="name">{{this}}</span> ({{@key}})</div>
116 {{#each aPlace.aExtraTags}}
117 <div class="line"><span class="name">{{this}}</span> ({{@key}})</div>
123 <div class="col-md-6">
128 <div class="col-md-12">
130 <table id="address" class="table table-striped table-responsive">
136 <th>Address rank</th>
143 {{#each aPlace.address_lines}}
144 {{> partial_details_one_row}}
148 {{#if aPlace.linked_lines}}
149 {{> partial_h2 'Linked Places'}}
150 {{#each aPlace.linked_lines}}
151 {{> partial_details_one_row}}
155 {{#if aPlace.place_search_name_keywords}}
156 {{> partial_h2 'Name Keywords'}}
157 {{#each aPlace.place_search_name_keywords}}
158 {{> partial_details_keyword_one_row}}
162 {{#if aPlace.place_search_address_keywords}}
163 {{> partial_h2 'Address Keywords'}}
164 {{#each aPlace.place_search_address_keywords}}
165 {{> partial_details_keyword_one_row}}
169 {{#if aPlace.parentof_lines}}
170 {{> partial_h2 'Parent Of'}}
172 {{#each aPlace.parentof_lines as |lines type|}}
173 {{> partial_h3 type}}
175 {{> partial_details_one_row}}
179 {{!-- @if (sizeof($aParentOfLines) >= 500)
180 <p>There are more child objects which are not shown.</p>