2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-17 16:27:07 +00:00

removed limit on number of entries exported

This commit is contained in:
2025-11-22 13:10:58 +02:00
parent 0a16a0bd9d
commit 2807ed5c21

View File

@@ -384,11 +384,8 @@ def logbook_entries_export(request, year):
exp = Expedition.objects.get(year=year)
entries = get_entries(year)
# for e in entries:
# print(f"{e.pk:03} {e}")
editor = get_editor(request)
write_entries(entries[:6], year, editor)
write_entries(entries, year, editor)
return redirect(f"/logreport/{year}")