mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-29 11:56:25 -06:00
Add paginator to top of lists.
Reworked template grids to be more responsive on smaller screens.
This commit is contained in:
parent
91fe80f73c
commit
f36041f738
@ -33,11 +33,6 @@ footer p {
|
|||||||
#navbar_search {
|
#navbar_search {
|
||||||
padding: 0 8px;
|
padding: 0 8px;
|
||||||
}
|
}
|
||||||
.right-side-panel {
|
|
||||||
max-width: 400px;
|
|
||||||
min-width: 300px;
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Hide the username in the navigation menu on displays less than 1400px wide */
|
/* Hide the username in the navigation menu on displays less than 1400px wide */
|
||||||
@media (max-width: 1399px) {
|
@media (max-width: 1399px) {
|
||||||
@ -168,7 +163,7 @@ td.min-width {
|
|||||||
|
|
||||||
/* Paginator */
|
/* Paginator */
|
||||||
div.paginator {
|
div.paginator {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
div.paginator form {
|
div.paginator form {
|
||||||
margin-bottom: 6px;
|
margin-bottom: 6px;
|
||||||
|
@ -129,7 +129,7 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% include 'inc/paginator.html' with paginator=circuits_table.paginator page=circuits_table.page %}
|
{% include 'inc/paginator.html' with paginator=circuits_table.paginator page=circuits_table.page show_count=True %}
|
||||||
{% plugin_right_page object %}
|
{% plugin_right_page object %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,12 +7,12 @@
|
|||||||
</div>
|
</div>
|
||||||
<h1>{% block title %}{{ title }}{% endblock %}</h1>
|
<h1>{% block title %}{{ title }}{% endblock %}</h1>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-12">
|
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-3 pull-right noprint">
|
||||||
<div class="col-md-3 pull-right right-side-panel noprint">
|
|
||||||
{% include 'inc/search_panel.html' %}
|
{% include 'inc/search_panel.html' %}
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-9">
|
||||||
{% include 'responsive_table.html' %}
|
{% include 'responsive_table.html' %}
|
||||||
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page show_count=True %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -18,10 +18,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<h1>{% block title %}Rack Elevations{% endblock %}</h1>
|
<h1>{% block title %}Rack Elevations{% endblock %}</h1>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-12">
|
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-3 pull-right noprint">
|
||||||
<div class="col-md-3 pull-right right-side-panel noprint">
|
|
||||||
{% include 'inc/search_panel.html' %}
|
{% include 'inc/search_panel.html' %}
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-9">
|
||||||
{% if page %}
|
{% if page %}
|
||||||
<div style="white-space: nowrap; overflow-x: scroll;">
|
<div style="white-space: nowrap; overflow-x: scroll;">
|
||||||
{% for rack in page %}
|
{% for rack in page %}
|
||||||
@ -49,7 +49,7 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
{% include 'inc/paginator.html' %}
|
{% include 'inc/paginator.html' with show_count=True %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>No racks found</p>
|
<p>No racks found</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include 'panel_table.html' %}
|
{% include 'panel_table.html' %}
|
||||||
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page show_count=True %}
|
||||||
<div class="text-muted">
|
<div class="text-muted">
|
||||||
Change log retention: {% if settings.CHANGELOG_RETENTION %}{{ settings.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
|
Change log retention: {% if settings.CHANGELOG_RETENTION %}{{ settings.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -92,7 +92,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
{% include 'panel_table.html' with table=items_table heading='Tagged Objects' %}
|
{% include 'panel_table.html' with table=items_table heading='Tagged Objects' %}
|
||||||
{% include 'inc/paginator.html' with paginator=items_table.paginator page=items_table.page %}
|
{% include 'inc/paginator.html' with paginator=items_table.paginator page=items_table.page show_count=True %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -4,7 +4,11 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="pull-right noprint">
|
<div class="row">
|
||||||
|
<div class="col-xs-12 col-sm-6 col-lg-6 col-md-2">
|
||||||
|
<h1>{% block title %}{{ content_type.model_class|meta:"verbose_name_plural"|bettertitle }}{% endblock %}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12 col-sm-6 col-lg-3 col-md-4 pull-right text-right noprint" style="margin-bottom: 1em;">
|
||||||
{% block buttons %}{% endblock %}
|
{% block buttons %}{% endblock %}
|
||||||
{% if request.user.is_authenticated and table_config_form %}
|
{% if request.user.is_authenticated and table_config_form %}
|
||||||
<button type="button" class="btn btn-default" data-toggle="modal" data-target="#ObjectTable_config" title="Configure table"><i class="mdi mdi-cog"></i> Configure</button>
|
<button type="button" class="btn btn-default" data-toggle="modal" data-target="#ObjectTable_config" title="Configure table"><i class="mdi mdi-cog"></i> Configure</button>
|
||||||
@ -19,15 +23,19 @@
|
|||||||
{% export_button content_type %}
|
{% export_button content_type %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<h1>{% block title %}{{ content_type.model_class|meta:"verbose_name_plural"|bettertitle }}{% endblock %}</h1>
|
<div class="col-xs-12 col-sm-12 col-lg-3 col-md-6">
|
||||||
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page show_count=False%}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-12">
|
|
||||||
{% if filter_form %}
|
{% if filter_form %}
|
||||||
<div class="col-md-3 pull-right right-side-panel noprint">
|
<div class="col-xs-12 col-sm-12 col-lg-3 col-md-4 pull-right noprint">
|
||||||
{% include 'inc/search_panel.html' %}
|
{% include 'inc/search_panel.html' %}
|
||||||
{% block sidebar %}{% endblock %}
|
{% block sidebar %}{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<div class="col-xs-12 col-sm-12 col-lg-9 col-md-8">
|
||||||
{% with bulk_edit_url=content_type.model_class|validated_viewname:"bulk_edit" bulk_delete_url=content_type.model_class|validated_viewname:"bulk_delete" %}
|
{% with bulk_edit_url=content_type.model_class|validated_viewname:"bulk_edit" bulk_delete_url=content_type.model_class|validated_viewname:"bulk_delete" %}
|
||||||
{% if permissions.change or permissions.delete %}
|
{% if permissions.change or permissions.delete %}
|
||||||
<form method="post" class="form form-horizontal">
|
<form method="post" class="form form-horizontal">
|
||||||
@ -58,7 +66,7 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% include table_template|default:'responsive_table.html' %}
|
{% include table_template|default:'responsive_table.html' %}
|
||||||
<div class="pull-left noprint">
|
<div class="pull-left noprint" style="margin-bottom: 1em;">
|
||||||
{% block bulk_buttons %}{% endblock %}
|
{% block bulk_buttons %}{% endblock %}
|
||||||
{% if bulk_edit_url and permissions.change %}
|
{% if bulk_edit_url and permissions.change %}
|
||||||
<button type="submit" name="_edit" formaction="{% url bulk_edit_url %}{% if request.GET %}?{{ request.GET.urlencode }}{% endif %}" class="btn btn-warning btn-sm">
|
<button type="submit" name="_edit" formaction="{% url bulk_edit_url %}{% if request.GET %}?{{ request.GET.urlencode }}{% endif %}" class="btn btn-warning btn-sm">
|
||||||
@ -76,10 +84,11 @@
|
|||||||
{% include table_template|default:'responsive_table.html' %}
|
{% include table_template|default:'responsive_table.html' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page show_count=True %}
|
||||||
<div class="clearfix"></div>
|
<div class="clearfix"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% table_config_form table table_name="ObjectTable" %}
|
{% table_config_form table table_name="ObjectTable" %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{% load helpers %}
|
{% load helpers %}
|
||||||
|
|
||||||
<div class="paginator pull-right text-right">
|
<div class="paginator pull-right text-right noprint">
|
||||||
{% if paginator.num_pages > 1 %}
|
{% if paginator.num_pages > 1 %}
|
||||||
<nav>
|
<nav>
|
||||||
<ul class="pagination pull-right">
|
<ul class="pagination pull-right">
|
||||||
@ -20,6 +20,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if show_count %}
|
||||||
<form method="get">
|
<form method="get">
|
||||||
{% for k, v_list in request.GET.lists %}
|
{% for k, v_list in request.GET.lists %}
|
||||||
{% if k != 'per_page' %}
|
{% if k != 'per_page' %}
|
||||||
@ -33,10 +34,11 @@
|
|||||||
<option value="{{ n }}"{% if page.paginator.per_page == n %} selected="selected"{% endif %}>{{ n }}</option>
|
<option value="{{ n }}"{% if page.paginator.per_page == n %} selected="selected"{% endif %}>{{ n }}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</select> per page
|
</select> per page
|
||||||
</form>
|
|
||||||
{% if page %}
|
{% if page %}
|
||||||
<div class="text-right text-muted">
|
<div class="text-right text-muted">
|
||||||
Showing {{ page.start_index }}-{{ page.end_index }} of {{ page.paginator.count }}
|
Showing {{ page.start_index }}-{{ page.end_index }} of {{ page.paginator.count }}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</form>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -45,5 +45,5 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
{% include table_template|default:'responsive_table.html' %}
|
{% include table_template|default:'responsive_table.html' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page show_count=True %}
|
||||||
<div class="clearfix"></div>
|
<div class="clearfix"></div>
|
||||||
|
Loading…
Reference in New Issue
Block a user