1
00:00:00,550 --> 00:00:06,370
Hey, welcome to a new series of videos on building the job application form with Django.

2
00:00:06,400 --> 00:00:16,990
So far, we have created a job application app in Django with a views.py contents as you see in here.

3
00:00:17,020 --> 00:00:18,930
urls.py.

4
00:00:18,940 --> 00:00:21,190
We add this URL patterns.

5
00:00:21,400 --> 00:00:33,250
We added a module the form module to our models.py file and we also modified the settings.py file of

6
00:00:33,250 --> 00:00:34,810
the mysite project.

7
00:00:34,810 --> 00:00:39,190
So these are the data, the configurations of the project.

8
00:00:39,370 --> 00:00:41,500
And so that's what we have so far.

9
00:00:41,500 --> 00:00:52,090
And that if we run that with Python Manage.py run server and we visit that web page, we will see this.

10
00:00:52,090 --> 00:01:01,400
So the Hello text which corresponds to the content of templates index.html this one in here.

11
00:01:01,990 --> 00:01:10,180
So today we're going to work on the index.html template to get the data from the user, store them in

12
00:01:10,180 --> 00:01:15,370
the database, send an email to the user and also create an admin interface.

13
00:01:15,370 --> 00:01:21,850
So let's start by implementing the application form on the HTML part.

14
00:01:21,880 --> 00:01:25,600
Let's complete this index.html file in the next video.

15
00:01:25,600 --> 00:01:26,110
I'll see you there.

