2
1
Fork 0

minor typo fixed. TODO with known bug added

Dieser Commit ist enthalten in:
Benni Bärmann 2021-01-04 11:24:20 +01:00
Ursprung ea5aa5a1f5
Commit b5e0dbdd44
2 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen

5
TODO Normale Datei
Datei anzeigen

@ -0,0 +1,5 @@
known bugs:
- there is html-code in some plain text mails, because they use
models.TYPE_CHOICES, which is in html, because it is mainly used for the
website side of things.

Datei anzeigen

@ -27,7 +27,7 @@ def auth_deny(choice,pk,auth):
elif choice == 'IFG':
IFG.set_granted(pk,auth)
else:
return HttpResponse(f'ERROR! UNKNWON CHOICE TYPE! {choice}')
return HttpResponse(f'ERROR! UNKNOWN CHOICE TYPE! {choice}')
return False
@login_required