diff --git a/config/settings.py b/config/settings.py index 3ba6717..6312ccc 100644 --- a/config/settings.py +++ b/config/settings.py @@ -154,3 +154,15 @@ MEDIA_URL = '/media/' LOGIN_REDIRECT_URL = 'blog-home' LOGIN_URL = 'login' + + +# Email + +EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' + +EMAIL_HOST = 'smtp.gmail.com' +EMAIL_USE_TLS = True +EMAIL_PORT = 587 +EMAIL_HOST_USER = secrets.EMAIL_USER +EMAIL_HOST_PASSWORD = secrets.EMAIL_PASSWORD + diff --git a/innovate/forms.py b/innovate/forms.py index 45c3d1f..9b6c54c 100644 --- a/innovate/forms.py +++ b/innovate/forms.py @@ -6,10 +6,12 @@ from .models import Competitor, Team class CompetitorForm(forms.ModelForm): name = forms.CharField(label='Full Name', widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'John Doe'})) email = forms.EmailField(label='Email', widget=forms.EmailInput(attrs={'class': 'form-control', 'placeholder': 'example@email.com'})) - + school = forms.CharField(label='School', widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'TJHSST'})) + county = forms.CharField(label='County', widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Fairfax'})) + class Meta: model = Competitor - fields = ['name', 'email'] + fields = ['name', 'email', 'school', 'county'] def __init__(self, *args, **kwargs): super(CompetitorForm, self).__init__(*args, **kwargs) diff --git a/innovate/migrations/0003_auto_20210211_0122.py b/innovate/migrations/0003_auto_20210211_0122.py new file mode 100644 index 0000000..4ceb135 --- /dev/null +++ b/innovate/migrations/0003_auto_20210211_0122.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1.6 on 2021-02-11 01:22 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('innovate', '0002_auto_20210208_1549'), + ] + + operations = [ + migrations.AddField( + model_name='competitor', + name='county', + field=models.CharField(blank=True, default='', max_length=20), + ), + migrations.AddField( + model_name='competitor', + name='school', + field=models.CharField(blank=True, default='', max_length=20), + ), + ] diff --git a/innovate/models.py b/innovate/models.py index 9133dea..93387d6 100644 --- a/innovate/models.py +++ b/innovate/models.py @@ -22,7 +22,9 @@ class Team(models.Model): class Competitor(models.Model): name = models.CharField(max_length=20, blank=True, default='') - email = models.EmailField(max_length = 254) + email = models.EmailField(max_length=254) + school = models.CharField(max_length=20, blank=True, default='') + county = models.CharField(max_length=20, blank=True, default='') is_leader = models.BooleanField(default=False) team = models.ForeignKey(Team, related_name="competitors", on_delete=models.CASCADE) diff --git a/innovate/templates/innovate/email_template.html b/innovate/templates/innovate/email_template.html new file mode 100644 index 0000000..5b27de0 --- /dev/null +++ b/innovate/templates/innovate/email_template.html @@ -0,0 +1,18 @@ +
Thanks for registering for InnovateTJ! This is a confirmation email for your registration. Your team is number {{ team.number }}. This number will be used for pitching and grading purposes. If you have any questions prior to the event, please email us here.
+Team Member {{ forloop.counter }}: {{ member.name }}
+From {{ member.school }} @ {{ member.school }}
+We'll be seeing you on February 20th, 2021 from 9AM to 5AM, and more information will be sent out as the event nears! But until then, keep innovating.
+
+ Best,
+ InnovateTJ Team
+ tjhsstlaunchx@gmail.com
+