From 789d49a2c9240339af0ecb0d1b3165c77997e130 Mon Sep 17 00:00:00 2001 From: Jan Date: Wed, 13 Nov 2024 11:02:41 +0100 Subject: [PATCH 1/2] Fixed error in p3info text --- slaeforms/templates/p3infos.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/slaeforms/templates/p3infos.html b/slaeforms/templates/p3infos.html index 3729232..5d7413f 100644 --- a/slaeforms/templates/p3infos.html +++ b/slaeforms/templates/p3infos.html @@ -11,10 +11,10 @@

Die Antwortmöglichkeiten sind jedes Mal:

    -
  1. Links
  2. -
  3. Eher links
  4. -
  5. Beide gleich
  6. -
  7. Eher rechts
  8. -
  9. Rechts
  10. +
  11. Trifft überhaupt nicht zu
  12. +
  13. Trifft eher nicht zu
  14. +
  15. Ich weiß nicht
  16. +
  17. Trifft eher zu
  18. +
  19. Trifft vollkommen zu
\ No newline at end of file From 522d10f4224f11ccad17d0a9a198fa7c2f3ac02d Mon Sep 17 00:00:00 2001 From: Jan Date: Wed, 13 Nov 2024 11:05:52 +0100 Subject: [PATCH 2/2] Small file naming typo fixed --- slaeforms/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slaeforms/app.py b/slaeforms/app.py index a4bd12f..7d643c4 100644 --- a/slaeforms/app.py +++ b/slaeforms/app.py @@ -541,7 +541,7 @@ def export_all_videos(): with ZipFile('zip_exports/all_videos.zip', 'w') as zipf: #no compression, need to add zipfile.ZIP_DEFLATED for compression zipdir('uploads/', zipf) - return send_file("zip_exports/all_videos.zip", as_attachment=False, download_name="all_tables.zip") + return send_file("zip_exports/all_videos.zip", as_attachment=False, download_name="all_videos.zip") def create_csv(table, filename):