2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-16 09:57:22 +00:00

bugfixing

This commit is contained in:
2023-09-02 19:23:22 +03:00
parent 1a8bc17f80
commit a4f676fd32
3 changed files with 37 additions and 14 deletions

View File

@@ -81,8 +81,9 @@ def store_edited_entry_into_database(date, place, title, text, others, author, t
"expedition": expedition,
"time_underground": tu,
"cave_slug": str(cave),
"title": f"{place} - {title}"
}
lookupAttribs = {"slug": slug, "date": date, "title": title}
lookupAttribs = {"slug": slug, "date": date }
lbo = LogbookEntry.objects.create(**nonLookupAttribs, **lookupAttribs)