aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/base
diff options
context:
space:
mode:
Diffstat (limited to 'templates/web/base')
-rw-r--r--templates/web/base/admin/config_page.html1
-rw-r--r--templates/web/base/open311/index.html5
-rw-r--r--templates/web/base/report/new/fill_in_details.html2
3 files changed, 3 insertions, 5 deletions
diff --git a/templates/web/base/admin/config_page.html b/templates/web/base/admin/config_page.html
index 71c524fb3..67661c597 100644
--- a/templates/web/base/admin/config_page.html
+++ b/templates/web/base/admin/config_page.html
@@ -68,6 +68,7 @@ running version <strong>[% git_version || 'unknown' %]</strong>.
</tr>
[% INCLUDE with_cobrand value="ALL_REPORTS_PER_PAGE" cob=c.cobrand.reports_per_page %]
[% INCLUDE just_value value="RSS_LIMIT" %]
+[% INCLUDE just_value value="OPEN311_LIMIT" conf_default = '<em>1000</em>' %]
[% INCLUDE just_value value="AREA_LINKS_FROM_PROBLEMS" %]
[% INCLUDE subsection heading="Geocoder" %]
diff --git a/templates/web/base/open311/index.html b/templates/web/base/open311/index.html
index 196cf0db6..558c14ca5 100644
--- a/templates/web/base/open311/index.html
+++ b/templates/web/base/open311/index.html
@@ -73,7 +73,7 @@ for council problem-reporting systems.</p>
<li><a rel="nofollow" href="http://wiki.open311.org/GeoReport_v2">[% loc('Open311 specification') %]</a></li>
</ul>
-<p>[% tprintf( loc('At most %d requests are returned in each query. The returned requests are ordered by requested_datetime, so to get all requests, do several searches with rolling start_date and end_date.'), c.config.RSS_LIMIT ) %]</p>
+<p>[% tprintf( loc('At most %d requests are returned in each query. The returned requests are ordered by requested_datetime, so to get all requests, do several searches with rolling start_date and end_date.'), c.config.OPEN311_LIMIT ) %]</p>
<p>[% loc('The following Open311 v2 attributes are returned for each request: service_request_id, description, lat, long, media_url, status, requested_datetime, updated_datetime, service_code and service_name.') %]</p>
@@ -124,9 +124,6 @@ for council problem-reporting systems.</p>
] %]
[% FOREACH examples %]
<li><a href="[% url %]">[% info %]</a>
- [% IF url.match('/requests.xml') %]
- [ <a href="http://maps.google.com/?q=[% url.replace('.xml', '.rss') | uri %]">[% loc('GeoRSS on Google Maps') %]</a> ]
- [% END %]
<br>[% url | html %]</li>
[% END %]
diff --git a/templates/web/base/report/new/fill_in_details.html b/templates/web/base/report/new/fill_in_details.html
index debc2af2d..8fa1253da 100644
--- a/templates/web/base/report/new/fill_in_details.html
+++ b/templates/web/base/report/new/fill_in_details.html
@@ -2,7 +2,7 @@
sidebar_html = PROCESS 'report/new/sidebar.html';
SET bodyclass = '';
- SET bodyclass = 'mappage' IF report.used_map;
+ SET bodyclass = 'mappage';
SET bodyclass = bodyclass _ " with-notes" IF sidebar_html;
PROCESS "maps/${map.type}.html" IF report.used_map;
INCLUDE 'header.html', title => loc('Reporting a problem');