mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2025-01-13 17:38:24 +01:00
Fix the call the user setting for tickets per page
This commit is contained in:
parent
d80c70735a
commit
d7f4ca4137
@ -99,7 +99,7 @@ def dashboard(request):
|
||||
with options for them to 'Take' ownership of said tickets.
|
||||
"""
|
||||
# user settings num tickets per page
|
||||
tickets_per_page = request.user.usersettings_helpdesk.settings.get('tickets_per_page') or 25
|
||||
tickets_per_page = request.user.usersettings_helpdesk.tickets_per_page or 25
|
||||
|
||||
# page vars for the three ticket tables
|
||||
user_tickets_page = request.GET.get(_('ut_page'), 1)
|
||||
|
Loading…
Reference in New Issue
Block a user