|
|
@ -136,9 +136,6 @@ class KorekturyView(generic.TemplateView): |
|
|
|
# Prijemci e-mailu |
|
|
|
emails = set() |
|
|
|
email = oprava.autor.user.email |
|
|
|
# e-mail autora opravy (TODO odstranit z prijemcu) |
|
|
|
if email: |
|
|
|
emails.add(email) |
|
|
|
# nalezeni e-mailu na organizatory komentaru |
|
|
|
for komentar in oprava.komentar_set.all(): |
|
|
|
email = komentar.autor.user.email |
|
|
@ -149,6 +146,9 @@ class KorekturyView(generic.TemplateView): |
|
|
|
email_zobpovedny = oprava.pdf.org.user.email |
|
|
|
if email_zobpovedny: |
|
|
|
emails.add(email_zobpovedny) |
|
|
|
# odstran e-mail autora opravy |
|
|
|
if email: |
|
|
|
emails.discard(email) |
|
|
|
|
|
|
|
send_mail(subject, text, from_email, list(emails)) |
|
|
|
|
|
|
|