diff options
Diffstat (limited to 'core/views/caves.py')
-rw-r--r-- | core/views/caves.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/views/caves.py b/core/views/caves.py index bc5d6d7..c845f01 100644 --- a/core/views/caves.py +++ b/core/views/caves.py @@ -405,6 +405,7 @@ def edit_cave(request, path="", slug=None): if form.is_valid(): # and ceFormSet.is_valid(): # print(f'! POST is valid. {cave}') cave = form.save(commit=False) + print(cave) if not cave.filename: cave.filename = cave.areacode + "-" + cave.number() + ".html" if not cave.url: |