This commit is contained in:
Ross
2021-12-14 19:07:10 +00:00
parent 22585f15cc
commit b8928274c0
2 changed files with 11 additions and 0 deletions
+1
View File
@@ -206,6 +206,7 @@ class CidUser(models.Model):
internal_candidate = models.BooleanField(default=False)
name = models.CharField(blank=True, max_length=255)
email = models.EmailField(blank=True)
supervisor_email = models.EmailField(blank=True)
group = models.ForeignKey("CidUserGroup", on_delete=models.SET_NULL, null=True)
+10
View File
@@ -245,6 +245,16 @@ TINYMCE_DEFAULT_CONFIG = {
DEFAULT_AUTO_FIELD='django.db.models.AutoField'
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'mail.xkjq.uk'
EMAIL_HOST_USER = 'test@xkjq.uk'
EMAIL_HOST_PASSWORD = 'b=GzK~4$oRVE'
EMAIL_PORT = 465
EMAIL_USE_TLS = True
EMAIL_USE_SSl = True
DEFAULT_FROM_EMAIL = EMAIL_HOST_USER
try:
from .settings_local import *
except ImportError: