mirror of
https://codeberg.org/angestoepselt/homepage.git
synced 2025-05-24 14:46:16 +00:00
Fix form attachment type for "Computerantrag" form
This commit is contained in:
parent
d7ef3f06d9
commit
10be9637e7
1 changed files with 1 additions and 1 deletions
|
|
@ -165,7 +165,7 @@ match request_uri:
|
||||||
ticket_details["Adresse"] = get_form_value("addressline")
|
ticket_details["Adresse"] = get_form_value("addressline")
|
||||||
ticket_details["PLZ"] = get_form_value("postalcode")
|
ticket_details["PLZ"] = get_form_value("postalcode")
|
||||||
ticket_details["Stadt"] = get_form_value("city")
|
ticket_details["Stadt"] = get_form_value("city")
|
||||||
attachment = get_form_value("document")
|
attachment = get_form_value("document", cast=bytes)
|
||||||
|
|
||||||
# Note: the actual form contains a checkbox for whether the user has
|
# Note: the actual form contains a checkbox for whether the user has
|
||||||
# read the guidelines, but we don't actually bother checking that here.
|
# read the guidelines, but we don't actually bother checking that here.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue