fixed import log

This commit is contained in:
vabene1111 2021-02-15 15:30:19 +01:00
parent 777f4518be
commit ff0cd6fa93

View File

@ -30,9 +30,7 @@ def keyword(request):
@group_required('admin')
def sync_log(request):
table = ImportLogTable(
SyncLog.objects.all().order_by(
Lower('created_at').desc()
)
SyncLog.objects.all().order_by('-created_at')
)
RequestConfig(request, paginate={'per_page': 25}).configure(table)