mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-16 02:48:00 +02:00
settings.py cleanup (#200) - remove HELPDESK_DASHBOARD_BASIC_TICKET_STATS, always shows now. This resolves #201 to my satisfaction for now.
This commit is contained in:
@ -82,10 +82,7 @@ def dashboard(request):
|
||||
submitter_email=email_current_user,
|
||||
).order_by('status')
|
||||
|
||||
# calculate basic ticket stats if requested
|
||||
basic_ticket_stats = False
|
||||
if helpdesk_settings.HELPDESK_DASHBOARD_BASIC_TICKET_STATS:
|
||||
basic_ticket_stats = calc_basic_ticket_stats(Ticket)
|
||||
basic_ticket_stats = calc_basic_ticket_stats(Ticket)
|
||||
|
||||
# The following query builds a grid of queues & ticket statuses,
|
||||
# to be displayed to the user. EG:
|
||||
|
Reference in New Issue
Block a user