Skip to content

Commit

Permalink
fix current missions ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalfox committed Aug 28, 2024
1 parent febbc8d commit 269ef90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crm/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ def company_detail(request, company_id):
"clients": Client.objects.filter(organisation__company=company).select_related(),
"lead_data_url": reverse('leads:client_company_lead_table_DT', args=[company.id,]),
"mission_data_url": reverse('staffing:client_company_mission_table_DT', args=[company.id,]),
"mission_datatable_options": ''' "columnDefs": [{ "orderable": false, "targets": [4, 7, 8] },
"mission_datatable_options": ''' "columnDefs": [{ "orderable": false, "targets": [4, 8, 9, 10] },
{ className: "hidden-xs hidden-sm hidden-md", "targets": [6, 7,8]}],
"order": [[0, "asc"]] ''',
"data_for_other_subsidiaries": data_for_other_subsidiaries,
Expand Down

0 comments on commit 269ef90

Please sign in to comment.