From b672e2cdefd6b7298f31d3517e21e68949d7fbda Mon Sep 17 00:00:00 2001 From: rhartig-ct Date: Thu, 16 Mar 2023 14:02:20 -0600 Subject: [PATCH 1/2] Removed page-link class from paginator pages for ellipses --- django_tables2/templates/django_tables2/bootstrap4.html | 2 +- django_tables2/templates/django_tables2/bootstrap5.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/django_tables2/templates/django_tables2/bootstrap4.html b/django_tables2/templates/django_tables2/bootstrap4.html index d385f731..cfdf8a70 100644 --- a/django_tables2/templates/django_tables2/bootstrap4.html +++ b/django_tables2/templates/django_tables2/bootstrap4.html @@ -72,7 +72,7 @@ {% block pagination.range %} {% for p in table.page|table_page_range:table.paginator %}
  • - + {{ p }}
  • diff --git a/django_tables2/templates/django_tables2/bootstrap5.html b/django_tables2/templates/django_tables2/bootstrap5.html index b3896e40..973b10af 100644 --- a/django_tables2/templates/django_tables2/bootstrap5.html +++ b/django_tables2/templates/django_tables2/bootstrap5.html @@ -72,7 +72,7 @@ {% block pagination.range %} {% for p in table.page|table_page_range:table.paginator %}
  • - + {{ p }}
  • From 1a389ba65419943888bbde29d6c2e68db1b4322a Mon Sep 17 00:00:00 2001 From: rhartig-ct Date: Thu, 16 Mar 2023 14:21:23 -0600 Subject: [PATCH 2/2] Updated CHANGELOG --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 766c5353..e757f6b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change log +## Unreleased + - Remove page-link class from the ellipses paginator element + ## 2.5.3 (2023-03-05) - Assign request to table before anything else in `RequestConfig.configure()` ([#888](https://github.com/jieter/django-tables2/pull/888)) fixes: [#865](https://github.com/jieter/django-tables2/issues/865) - Add type hints to get_context_data ([#895](https://github.com/jieter/django-tables2/pull/895)) by [@mschoettle](https://github.com/mschoettle)