File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7+ < title > Resume Ranks </ title >
8+
9+ </ head >
10+
11+ < body >
12+ < h1 > Resume Ratings </ h1 >
13+ < table border ="1 ">
14+ < tr >
15+ < th > Resume Name</ th >
16+ < th > Candidate Name</ th >
17+ < th > Candidate Email</ th >
18+ <!--<th>Educational Qualification</th>-->
19+ <!--<th>Skills</th>-->
20+
21+ < th > Star Rating</ th >
22+
23+ </ tr >
24+ {% for result in results %}
25+ < tr >
26+ < td > {{ result.resume_name }}</ td >
27+ < td > {{ result.star_rating[0] }}</ td >
28+ < td > {{ result.star_rating[1] }}</ td >
29+ <!--<td>{{ result.star_rating[2] }}</td> -->
30+ <!--<td>{{ result.star_rating[3] }}</td>-->
31+ < td > {{ result.star_rating[4]}}</ td >
32+
33+
34+ </ tr >
35+ {% endfor %}
36+ </ table >
37+ </ body >
38+
39+ </ html >
40+
You can’t perform that action at this time.
0 commit comments