Skip to content

Commit

Permalink
add candidates data in html
Browse files Browse the repository at this point in the history
  • Loading branch information
Mubashir12392 committed Mar 15, 2023
1 parent 19ecc43 commit b50f392
Showing 1 changed file with 7 additions and 70 deletions.
77 changes: 7 additions & 70 deletions templates/candidates.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,83 +20,20 @@ <h1 class="mb-3 bread">Hire Your Best Candidates</h1>
<div class="row">
<div class="col-lg-8 pr-lg-4">
<div class="row">
{% for employee in employees %}
<div class="col-md-12">
<div class="team d-md-flex p-4 bg-white">
<div class="img" style="background-image: url({% static 'images/person_1.jpg' %});"></div>
<div class="text pl-md-4">
<span class="location mb-0">Western City, UK</span>
<h2>Danica Lewis</h2>
<span class="position">Graduate</span>
<p class="mb-2">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="seen">Last Activity 4 months ago</span>
<p><a href="#" class="btn btn-primary">Shortlist</a></p>
</div>
</div>
</div>
<div class="col-md-12">
<div class="team d-md-flex p-4 bg-white">
<div class="img" style="background-image: url({% static 'images/person_2.jpg' %});"></div>
<div class="text pl-md-4">
<span class="location mb-0">Western City, UK</span>
<h2>Danica Lewis</h2>
<span class="position">Graduate</span>
<p class="mb-2">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="seen">Last Activity 4 months ago</span>
<p><a href="#" class="btn btn-primary">Shortlist</a></p>
</div>
</div>
</div>
<div class="col-md-12">
<div class="team d-md-flex p-4 bg-white">
<div class="img" style="background-image: url({% static 'images/person_3.jpg' %});"></div>
<div class="text pl-md-4">
<span class="location mb-0">Western City, UK</span>
<h2>Danica Lewis</h2>
<span class="position">Graduate</span>
<p class="mb-2">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="seen">Last Activity 4 months ago</span>
<p><a href="#" class="btn btn-primary">Shortlist</a></p>
</div>
</div>
</div>
<div class="col-md-12">
<div class="team d-md-flex p-4 bg-white">
<div class="img" style="background-image: url({% static 'images/person_4.jpg' %});"></div>
<div class="text pl-md-4">
<span class="location mb-0">Western City, UK</span>
<h2>Danica Lewis</h2>
<span class="position">Graduate</span>
<p class="mb-2">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="seen">Last Activity 4 months ago</span>
<p><a href="#" class="btn btn-primary">Shortlist</a></p>
</div>
</div>
</div>
<div class="col-md-12">
<div class="team d-md-flex p-4 bg-white">
<div class="img" style="background-image: url({% static 'images/person_5.jpg' %});"></div>
<div class="text pl-md-4">
<span class="location mb-0">Western City, UK</span>
<h2>Danica Lewis</h2>
<span class="position">Graduate</span>
<p class="mb-2">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="seen">Last Activity 4 months ago</span>
<p><a href="#" class="btn btn-primary">Shortlist</a></p>
</div>
</div>
</div>
<div class="col-md-12">
<div class="team d-md-flex p-4 bg-white">
<div class="img" style="background-image: url({% static 'images/person_6.jpg' %});"></div>
<div class="text pl-md-4">
<span class="location mb-0">Western City, UK</span>
<h2>Danica Lewis</h2>
<span class="position">Graduate</span>
<p class="mb-2">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="seen">Last Activity 4 months ago</span>
<span class="location mb-0">{{employee.location}}</span>
<h2>{{employee.user}}</h2>
<span class="position">{{employee.education}}</span>
<p class="mb-2">{{employee.about}}</p>
<p><a href="#" class="btn btn-primary">Shortlist</a></p>
</div>
</div>
{% endfor %}

</div>
</div>
<div class="row mt-5">
Expand Down

0 comments on commit b50f392

Please sign in to comment.