diff --git a/src/postorius/static/postorius/css/style.css b/src/postorius/static/postorius/css/style.css
index 29acf1b..04c2f9b 100755
--- a/src/postorius/static/postorius/css/style.css
+++ b/src/postorius/static/postorius/css/style.css
@@ -307,3 +307,7 @@
.well .archival-options-form li {
display: block;
}
+
+.hidden {
+ display: none;
+}
diff --git a/src/postorius/static/postorius/js/script.js b/src/postorius/static/postorius/js/script.js
index e69de29..2c2d364 100755
--- a/src/postorius/static/postorius/js/script.js
+++ b/src/postorius/static/postorius/js/script.js
@@ -0,0 +1,36 @@
+/*
+ * Postorius
+ *
+ * Copyright (C) 1998-2015 by the Free Software Foundation, Inc.
+ *
+ * This file is part of Postorius.
+ *
+ * Postorius is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option)
+ * any later version.
+ *
+ * Postorius is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * Postorius. If not, see .
+ *
+ */
+
+
+$(function() {
+
+ /* Pagination */
+ $(".pager .pager-select a").click(function(e) {
+ e.preventDefault();
+ $(this).hide();
+ $(this).next("form").css("display", "inline-block");
+ });
+ $(".pager .pager-select form select").change(function() {
+ $(this).closest("form").submit();
+ });
+
+});
diff --git a/src/postorius/templates/postorius/_pagination.html b/src/postorius/templates/postorius/_pagination.html
new file mode 100644
index 0000000..9860969
--- /dev/null
+++ b/src/postorius/templates/postorius/_pagination.html
@@ -0,0 +1,59 @@
+{% load url from future %}
+{% load i18n %}
+
+{% if page.paginator.num_pages > 1 %}
+
+{% endif %}
diff --git a/src/postorius/templates/postorius/base.html b/src/postorius/templates/postorius/base.html
index 80acfcc..c546c0b 100644
--- a/src/postorius/templates/postorius/base.html
+++ b/src/postorius/templates/postorius/base.html
@@ -65,5 +65,6 @@
+
{% block additionaljs %}{% endblock %}