- make sure to setup smtp2go or you change it to smtp
- Add Validation in form.py
- add reverse lookup for ForeignKey using Model_set
class A(models.Model):
pass
class B(models.Model):
b= models.ForeignKey(A, on_delete=models.CASCADE)
#c is an instance of A
>>> c.B_set.all()