Commit 6ac4f944 by Karsa Zoltán István

delete table_pagination=False from view UserList

parent 32dfeb71
......@@ -172,6 +172,7 @@ class UserListTable(Table):
is_active = BooleanColumn()
class Meta:
per_page = 20
model = User
template = "django_tables2/with_pagination.html"
attrs = {'class': ('table table-bordered table-striped table-hover')}
......
......@@ -43,7 +43,7 @@ from simplesshkey.models import UserKey
from braces.views import LoginRequiredMixin, PermissionRequiredMixin
from django_tables2 import SingleTableView
from django_tables2 import SingleTableView, LazyPaginator
from vm.models import Instance, InstanceTemplate
......@@ -537,12 +537,12 @@ class ConnectCommandCreate(LoginRequiredMixin, SuccessMessageMixin,
return kwargs
class UserList(LoginRequiredMixin, PermissionRequiredMixin, SingleTableView):
class UserList(LoginRequiredMixin, PermissionRequiredMixin,
SingleTableView):
template_name = "dashboard/user-list.html"
permission_required = "auth.change_user"
model = User
table_class = UserListTable
table_pagination = True
def get_context_data(self, *args, **kwargs):
context = super(UserList, self).get_context_data(*args, **kwargs)
......@@ -552,7 +552,6 @@ class UserList(LoginRequiredMixin, PermissionRequiredMixin, SingleTableView):
def get(self, *args, **kwargs):
self.search_form = UserListSearchForm(self.request.GET)
self.search_form.full_clean()
if self.request.is_ajax():
users = [
{'url': reverse("dashboard.views.profile", args=[i.username]),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment