diff --git a/beat/web/reports/urls.py b/beat/web/reports/urls.py
index 611e5ef7d89db8a561fd76f27a2b190d527196c0..f8d7c7171225b3727ea2a54c49dca53ce1919ae3 100644
--- a/beat/web/reports/urls.py
+++ b/beat/web/reports/urls.py
@@ -31,27 +31,6 @@ from . import views
 
 partial_patterns = [
 
-    url(r'^reportInfo/$',
-        views.PartialGroupView.as_view(
-            template_name='reports/partials/reportGeneralInfo.html',
-        ),
-        name='info',
-        ),
-
-    url(r'^reportTable/$',
-        views.PartialGroupView.as_view(
-            template_name='reports/partials/reportSingleTable.html',
-        ),
-        name='table',
-        ),
-
-    url(r'^reportChartDropDown/$',
-        views.PartialGroupView.as_view(
-            template_name='reports/partials/reportChartDropDown.html',
-        ),
-        name='dropdown',
-        ),
-
     url(r'^(?P<template_name>[a-zA-Z_]+\.html)$',
         views.PartialGroupView.as_view(),
         ),
@@ -61,10 +40,6 @@ partial_patterns = [
 
 urlpatterns = [
 
-    url(r'^partials/',
-        include(partial_patterns, namespace='partials'),
-        ),
-
     url(
         r'^$',
         views.public_ls,
diff --git a/doc/user/faq.rst b/doc/user/faq.rst
index d62c716ac902e9194941d0dbe5accec506d2db52..2e2bd074276c1844bbf7be1ab2bab1b24ab106ac 100644
--- a/doc/user/faq.rst
+++ b/doc/user/faq.rst
@@ -80,7 +80,7 @@ You may contact our `development mailing list`_ for help to install the
 platform, in case you don't manage it from the provided instructions.
 
 
-The platform does not do something I need. How can I submit a feature request or a bug report?
+I'm getting an error, or the platform is not functioning as expected, or the platform does not do something I need. How can I submit a feature request or a bug report?
 ----------------------------------------------------------------------------------------------
 
 It is great you asked! Always start by posting your question at our
@@ -88,6 +88,8 @@ It is great you asked! Always start by posting your question at our
 will add it to our bug tracker. This strategy allows us to help you in case
 what you want to do is already possible!
 
+Additionally, sometimes after updates to the BEAT Platform, there are still old files left in your browser's cache. Clearing your caching and reloading the page may fix the issue!
+
 
 How can I have my dataset available on your platform?
 -----------------------------------------------------