Skip to content

Commit

Permalink
Merge pull request #121 from arthur-schnitzler/main
Browse files Browse the repository at this point in the history
closes #291
  • Loading branch information
csae8092 authored Jan 10, 2025
2 parents 200f185 + 4bb512c commit 7e1e907
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pmb/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"django.contrib.messages",
"django.contrib.staticfiles",
"rest_framework",
"csvexport",
"browsing",
"crispy_forms",
"crispy_bootstrap5",
Expand Down Expand Up @@ -331,3 +332,12 @@
("schnitzler-zeitungen.", "schnitzler-zeitungen", "#8E8575"),
("schnitzler-mikrofilme.", "schnitzler-mikrofilme", "#6e7b8b"),
]


CSV_EXPORT_REFERENCE_DEPTH = 1
CSV_EXPORT_DELIMITER = ','
CSV_EXPORT_ESCAPECHAR = '|'
CSV_EXPORT_QUOTECHAR = '"'
CSV_EXPORT_DOUBLEQUOTE = True
CSV_EXPORT_LINETERMINATOR = r'\n'
CSV_EXPORT_QUOTING = 'QUOTE_ALL'

0 comments on commit 7e1e907

Please sign in to comment.