diff --git a/netbox/project-static/dist/netbox.css b/netbox/project-static/dist/netbox.css index d07eb73c7..664e218df 100644 Binary files a/netbox/project-static/dist/netbox.css and b/netbox/project-static/dist/netbox.css differ diff --git a/netbox/project-static/styles/transitional/_tables.scss b/netbox/project-static/styles/transitional/_tables.scss index dc9dfdb7a..31bb69b13 100644 --- a/netbox/project-static/styles/transitional/_tables.scss +++ b/netbox/project-static/styles/transitional/_tables.scss @@ -1,3 +1,14 @@ +// Object list tables +table.object-list { + + // Hide border of last row + tbody > tr:last-child > td { + border-bottom-width: 0; + } + +} + +// Object attribute tables table.attr-table { // Restyle row header diff --git a/netbox/templates/inc/paginator.html b/netbox/templates/inc/paginator.html index 1d122cf7a..0a9128034 100644 --- a/netbox/templates/inc/paginator.html +++ b/netbox/templates/inc/paginator.html @@ -1,115 +1,117 @@ {% load helpers %} {% load i18n %} -
+{% if page %} +
- {# Pages carousel #} - {% if paginator.num_pages > 1 %} -
+ {# Next page #} + {% if page.has_next %} +
  • + {% if htmx %} + + + + {% else %} + + + + {% endif %} +
  • + {% endif %} + {# /Next page #} + + + + {% endif %} + {# /Pages carousel #} + + {# Showing #} + + {% blocktrans trimmed with start=page.start_index end=page.end_index total=page.paginator.count %} + Showing {{ start }}-{{ end }} of {{ total }} + {% endblocktrans %} + + {# /Showing #} + + {# Pagination options #} + + {# /Pagination options #} + +
    +{% endif %}