Create templates and generate dynamic emails based on the user associated with the email
git clone https://github.com/Asthenore/django_challenge.gitpip install -r requirements.txtpython manage.py migratepython manage.py createsuperuserpython manage.py runserverNow open the Django admin in a web browser: 127.0.0.1:8000/admin/
Create an user using the user app at: http://127.0.0.1:8000/admin/user_app/customuser/add/, give it staff status, fill the email field in personal info.
Create an user using the user app at: http://127.0.0.1:8000/admin/user_app/customuser/add/, fill the personal info with First name = "Juan" and Last name = "Pérez"
Create a template using the email app at :http://127.0.0.1:8000/admin/email_app/emailtemplate/add/, fill the subject field with "{{ user.get_full_name }}, welcome to the new Python Course!", fill the content field with "This email is intended for {{ user.inverted_name }}, We are pleased to let you know that you have been selected to participate in our new Python Course. Please send us your information and documents to complete the registration process to continue with the course. In addition, we have attached the course syllabus to this email. You have seven days from now ({{ timestamp }}) to complete the registration. Greetings from Python School!". In attachments select and upload any file.