19 lines
345 B
Python
19 lines
345 B
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
MAIL_VOTERS = (
|
|
"Dear {full_name},\n"
|
|
"\n"
|
|
"\n"
|
|
"Election URL: {election_url}\n"
|
|
"\n"
|
|
"Your voter ID: {username}\n"
|
|
"Your password: {password}\n"
|
|
"\n"
|
|
"-- \n"
|
|
"Kadenios"
|
|
)
|
|
|
|
CONNECTION_METHODS = {
|
|
"pwd": _("mot de passe"),
|
|
"cas": _("CAS"),
|
|
}
|