diff --git a/apimanager/metrics/templates/metrics/custom_summary.html b/apimanager/metrics/templates/metrics/custom_summary.html
index 623be2b..834fee5 100644
--- a/apimanager/metrics/templates/metrics/custom_summary.html
+++ b/apimanager/metrics/templates/metrics/custom_summary.html
@@ -86,7 +86,7 @@
- | Calls per day (last 30 days): |
+ Calls per day: |
 |
diff --git a/apimanager/metrics/views.py b/apimanager/metrics/views.py
index b39b8b8..b4be2ef 100644
--- a/apimanager/metrics/views.py
+++ b/apimanager/metrics/views.py
@@ -601,8 +601,10 @@ class MetricsSummaryView(LoginRequiredMixin, TemplateView):
for api in top_apis:
api['Implemented_by_partial_function'] = api['Implemented_by_partial_function'] + '(' + api['implemented_in_version'] + ')'
top_apis = top_apis[:10]
+ # for api in top_apis:
+ # #print("%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% TOP APIS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
+ # print(str(top_apis.index(api) + 1) + "," + api['Implemented_by_partial_function'] + "," + str(api['count']))
top_apis = reversed(top_apis)
-
return top_apis
def get_top_warehouse_calls(self, cleaned_data, from_date, to_date):
diff --git a/requirements.txt b/requirements.txt
index 2c879a2..2164628 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,3 @@
-#Django==1.11.7
Django==2.0.7
oauthlib==2.0.0
requests==2.11.1
@@ -7,4 +6,5 @@ PyJWT==1.5.3
gunicorn==19.6.0
matplotlib
django-mathfilters
-django-bootstrap3
\ No newline at end of file
+django-bootstrap3
+django-bootstrap-datepicker-plus
\ No newline at end of file