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 null}}</td>
20 {{#*inline "partial_details_keyword_one_row"}}
22 <td>{{formatKeywordToken this.token}}</td>
24 <td>word id: {{this.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}} <small>{{detailsPermaLink aPlace 'link to this page'}}</small></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.names}}
54 <div class="line"><span class="name">{{this}}</span> ({{@key}})</div>
60 <td>{{aPlace.category}}:{{aPlace.type}}</td>
64 <td>{{aPlace.indexed_date}}</td>
68 <td>{{aPlace.admin_level}}</td>
72 <td>{{formatSearchRank aPlace.rank_search}}</td>
74 {{#if aPlace.calculated_importance}}
78 {{aPlace.calculated_importance}}
79 {{#unless aPlace.importance}} (estimated){{/unless}}
85 <td>{{coverageType aPlace}}</td>
88 <td>Centre Point (lat,lon)</td>
89 <td>{{aPlace.centroid.coordinates.[1]}},{{aPlace.centroid.coordinates.[0]}}</td>
93 <td>{{osmLink aPlace}}
95 {{#if aPlace.calculated_wikipedia}}
97 <td>Wikipedia Calculated</td>
98 <td>{{wikipediaLink aPlace}}</td>
102 <td>Computed Postcode</td>
103 <td>{{aPlace.calculated_postcode}}</td>
106 <td>Address Tags</td>
108 {{#each aPlace.addresstags}}
109 <div class="line"><span class="name">{{this}}</span> ({{@key}})</div>
116 {{#each aPlace.extratags}}
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 {{#if aPlace.address}}
144 {{#each aPlace.address}}
145 {{> partial_details_one_row}}
149 {{#if aPlace.linked_places}}
150 {{> partial_h2 'Linked Places'}}
151 {{#each aPlace.linked_places}}
152 {{> partial_details_one_row}}
156 {{#if aPlace.keywords}}
157 {{> partial_h2 'Name Keywords'}}
158 {{#each aPlace.keywords.name}}
159 {{> partial_details_keyword_one_row}}
162 {{> partial_h2 'Address Keywords'}}
163 {{#each aPlace.keywords.address}}
164 {{> partial_details_keyword_one_row}}
168 {{#if aPlace.hierarchy}}
169 {{> partial_h2 'Parent Of'}}
171 {{#each aPlace.hierarchy as |lines type|}}
172 {{> partial_h3 type}}
174 {{> partial_details_one_row}}
178 {{tooManyHierarchyLinesWarning aPlace}}