mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2026-02-08 13:03:46 +00:00
removed limit on number of entries exported
This commit is contained in:
@@ -384,11 +384,8 @@ def logbook_entries_export(request, year):
|
|||||||
exp = Expedition.objects.get(year=year)
|
exp = Expedition.objects.get(year=year)
|
||||||
|
|
||||||
entries = get_entries(year)
|
entries = get_entries(year)
|
||||||
# for e in entries:
|
|
||||||
# print(f"{e.pk:03} {e}")
|
|
||||||
editor = get_editor(request)
|
editor = get_editor(request)
|
||||||
|
write_entries(entries, year, editor)
|
||||||
write_entries(entries[:6], year, editor)
|
|
||||||
return redirect(f"/logreport/{year}")
|
return redirect(f"/logreport/{year}")
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user