]> git.openstreetmap.org Git - nominatim-ui.git/blob - dist/deletable.hbs
index.html: opening html tag was missing
[nominatim-ui.git] / dist / deletable.hbs
1 <div class="container">
2   <div class="row">
3     <div class="col-sm-12">
4       <h1>Deletable</h1>
5
6       <p>
7           {{aPolygons.length}} objects have been deleted in OSM but are still in the Nominatim database.
8       </p>
9
10       <table class="table table-striped table-hover">
11         <thead>
12           <th>Place id</th>
13           <th>Country Code</th>
14           <th>Name</th>
15           <th>OSM id</th>
16           <th>OSM type</th>
17           <th>Class</th>
18           <th>Type</th>
19         </thead>
20         <tbody>
21           {{#each aPolygons}}
22           <tr>
23             <td>{{detailsLink this place_id}}</td>
24             <td>{{country_code}}</td>
25             <td>{{name}}</td>
26             <td>{{osmLink this}}</td>
27             <td>{{osm_type}}</td>
28             <td>{{class}}</td>
29             <td>{{type}}</td>
30           </tr>
31           {{/each}}
32         </tbody>
33       </table>
34
35
36     </div>
37   </div>
38 </div
39