+// *********************************************************
+// DELETABLE PAGE
+// *********************************************************
+
+jQuery(document).ready(function () {
+ if (!$('#deletable-page').length) { return; }
+
+ var api_request_params = {
+ format: 'json'
+ };
+
+ fetch_from_api('deletable', api_request_params, function (aPolygons) {
+ var context = { aPolygons: aPolygons };
+
+ render_template($('main'), 'deletable-template', context);
+ update_html_title('Deletable objects');
+
+ update_data_date();
+ });
+});
+// *********************************************************
+// BROKEN POLYGON PAGE
+// *********************************************************
+
+jQuery(document).ready(function () {
+ if (!$('#polygons-page').length) { return; }
+
+ var api_request_params = {
+ format: 'json'
+ };
+
+ fetch_from_api('polygons', api_request_params, function (aPolygons) {
+ var context = { aPolygons: aPolygons };
+
+ render_template($('main'), 'polygons-template', context);
+ update_html_title('Broken polygons');
+
+ update_data_date();
+ });
+});