43 lines
1.0 KiB
HTML
43 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ candidate.name }} - Resume Summary</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; margin: 2em; }
|
|
.section { margin-bottom: 2em; }
|
|
.section h2 { border-bottom: 1px solid #ddd; padding-bottom: 0.5em; color: #333; }
|
|
ul { padding-left: 20px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Candidate: {{ candidate.name }}</h1>
|
|
<div class="section">
|
|
<h2>Contact Information</h2>
|
|
<p><strong>Email:</strong> {{ candidate.email }}</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>Resume Summary</h2>
|
|
<p>{{ parsed.summary|default:"Not available." }}</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>Detected Name</h2>
|
|
<p>{{ parsed.name|default:"N/A" }}</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>Key Skills</h2>
|
|
{% if parsed.skills %}
|
|
<ul>
|
|
{% for skill in parsed.skills|slice:":10" %}
|
|
<li>{{ skill }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p>No skills extracted.</p>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html> |