diff --git a/web/templates/web/studies-history.html b/web/templates/web/studies-history.html
index 68cf1df76..28191f282 100644
--- a/web/templates/web/studies-history.html
+++ b/web/templates/web/studies-history.html
@@ -76,7 +76,7 @@
{% if form.past_studies_tabs|studies_tab_selected == "0" %}
@@ -140,6 +140,26 @@
{% trans "Study Responses" %}
{% endfor %}
+ {% if study.response_page.paginator.num_pages > 1 %}
+
+ {% if study.response_page.has_previous %}
+
+ {% bs_icon "chevron-left" %}
+
+ {% endif %}
+ {% trans "Page" %} {{ study.response_page.number }} {% trans "of" %} {{ study.response_page.paginator.num_pages }}
+ {% if study.response_page.has_next %}
+
+ {% bs_icon "chevron-right" %}
+
+ {% endif %}
+
+ {% endif %}
{% empty %}
@@ -151,4 +171,8 @@