From the course: Building a Personal Portfolio with Django

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Finishing touches in Django design

Finishing touches in Django design

From the course: Building a Personal Portfolio with Django

Start my 1-month free trial

Finishing touches in Django design

- Now in our project, we wanna make it so that we can actually see the jobs that are in our database show up in these really nice fancy cards that we have down below, and right now it's this stretched out singular card, not really impressive. We're gonna go step by step getting this to show the job that's in the database. So, let's go ahead and move over into atom, and once we are there, we're gonna scroll down to where we are displaying the jobs currently. So we've got this one row and inside of each row is gonna be this column. This is essentially where we want to repeat this over and over again until we have all the jobs showing up. Now it can be a little bit difficult. Make sure that you have lined up where these are. On mine here we've got from line 49 to 63 that that's one complete <div showing everything that's in a particular job. So with this, essentially we wanna wrap this around our code that loops through the jobs. If remember up at the very top of this file right, we…

Contents