mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-19 17:18:23 +02: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.
|
with options for them to 'Take' ownership of said tickets.
|
||||||
"""
|
"""
|
||||||
# user settings num tickets per page
|
# 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
|
# page vars for the three ticket tables
|
||||||
user_tickets_page = request.GET.get(_('ut_page'), 1)
|
user_tickets_page = request.GET.get(_('ut_page'), 1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user