This commit is contained in:
Iliyan Angelov
2025-11-24 03:52:08 +02:00
parent dfcaebaf8c
commit 366f28677a
18241 changed files with 865352 additions and 567 deletions

View File

@@ -0,0 +1,78 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.header {
background-color: #4A90E2;
color: white;
padding: 20px;
text-align: center;
}
.content {
background-color: #f9f9f9;
padding: 30px;
margin-top: 20px;
}
.details {
background-color: white;
padding: 15px;
margin: 20px 0;
border-left: 4px solid #4A90E2;
}
.footer {
text-align: center;
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #ddd;
font-size: 12px;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Application Received</h1>
</div>
<div class="content">
<p>Dear <strong>{{ applicant_name }}</strong>,</p>
<p>Thank you for applying for the <strong>{{ job_title }}</strong> position at GNX!</p>
<p>We have received your application and our team will review it carefully. We appreciate your interest in joining our team.</p>
<div class="details">
<h3>Application Details</h3>
<ul>
<li><strong>Position:</strong> {{ job_title }}</li>
<li><strong>Location:</strong> {{ job_location }}</li>
<li><strong>Applied on:</strong> {{ application_date|date:"F d, Y" }}</li>
</ul>
</div>
<h3>What happens next?</h3>
<p>Our hiring team will review your application and resume. If your qualifications match our requirements, we will contact you within 1-2 weeks to discuss the next steps.</p>
<p>If you have any questions, please don't hesitate to reach out to us.</p>
<p>Best regards,<br><strong>The GNX Team</strong></p>
</div>
<div class="footer">
<p>This is an automated message. Please do not reply to this email.</p>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,22 @@
Dear {{ applicant_name }},
Thank you for applying for the {{ job_title }} position at GNX!
We have received your application and our team will review it carefully. We appreciate your interest in joining our team.
Application Details:
- Position: {{ job_title }}
- Location: {{ job_location }}
- Applied on: {{ application_date|date:"F d, Y" }}
What happens next?
Our hiring team will review your application and resume. If your qualifications match our requirements, we will contact you within 1-2 weeks to discuss the next steps.
If you have any questions, please don't hesitate to reach out to us.
Best regards,
The GNX Team
---
This is an automated message. Please do not reply to this email.

View File

@@ -0,0 +1,160 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.header {
background-color: #2C3E50;
color: white;
padding: 20px;
text-align: center;
}
.content {
background-color: #f9f9f9;
padding: 30px;
margin-top: 20px;
}
.section {
background-color: white;
padding: 20px;
margin: 15px 0;
border-left: 4px solid #3498db;
}
.section h3 {
margin-top: 0;
color: #2C3E50;
}
.info-row {
margin: 10px 0;
}
.label {
font-weight: bold;
color: #555;
}
.cover-letter {
background-color: #f0f0f0;
padding: 15px;
border-radius: 5px;
white-space: pre-wrap;
margin-top: 10px;
}
.links a {
display: inline-block;
margin: 5px 10px 5px 0;
color: #3498db;
text-decoration: none;
}
.footer {
text-align: center;
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #ddd;
font-size: 12px;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>🎯 New Job Application</h1>
<p>{{ job_title }}</p>
</div>
<div class="content">
<div class="section">
<h3>👤 Applicant Information</h3>
<div class="info-row">
<span class="label">Name:</span> {{ applicant_name }}
</div>
<div class="info-row">
<span class="label">Email:</span> <a href="mailto:{{ applicant_email }}">{{ applicant_email }}</a>
</div>
{% if applicant_phone %}
<div class="info-row">
<span class="label">Phone:</span> {{ applicant_phone }}
</div>
{% endif %}
</div>
<div class="section">
<h3>💼 Professional Information</h3>
{% if current_position %}
<div class="info-row">
<span class="label">Current Position:</span> {{ current_position }}
</div>
{% endif %}
{% if current_company %}
<div class="info-row">
<span class="label">Current Company:</span> {{ current_company }}
</div>
{% endif %}
{% if years_of_experience %}
<div class="info-row">
<span class="label">Years of Experience:</span> {{ years_of_experience }}
</div>
{% endif %}
</div>
<div class="section">
<h3>📋 Application Details</h3>
<div class="info-row">
<span class="label">Position Applied:</span> {{ job_title }}
</div>
<div class="info-row">
<span class="label">Application Date:</span> {{ application_date|date:"F d, Y at h:i A" }}
</div>
{% if expected_salary %}
<div class="info-row">
<span class="label">Expected Salary:</span> {{ expected_salary }} {{ salary_currency }}
</div>
{% endif %}
{% if available_from %}
<div class="info-row">
<span class="label">Available From:</span> {{ available_from|date:"F d, Y" }}
</div>
{% endif %}
{% if notice_period %}
<div class="info-row">
<span class="label">Notice Period:</span> {{ notice_period }}
</div>
{% endif %}
</div>
{% if portfolio_url or linkedin_url or github_url or website_url %}
<div class="section">
<h3>🔗 Links</h3>
<div class="links">
{% if portfolio_url %}<a href="{{ portfolio_url }}" target="_blank">📁 Portfolio</a>{% endif %}
{% if linkedin_url %}<a href="{{ linkedin_url }}" target="_blank">💼 LinkedIn</a>{% endif %}
{% if github_url %}<a href="{{ github_url }}" target="_blank">💻 GitHub</a>{% endif %}
{% if website_url %}<a href="{{ website_url }}" target="_blank">🌐 Website</a>{% endif %}
</div>
</div>
{% endif %}
{% if cover_letter %}
<div class="section">
<h3>✉️ Cover Letter</h3>
<div class="cover-letter">{{ cover_letter }}</div>
</div>
{% endif %}
</div>
<div class="footer">
<p><strong>Resume is attached to this email.</strong></p>
<p>Please log in to the admin panel to review the full application and update its status.</p>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,48 @@
New Job Application Received
A new application has been submitted for the {{ job_title }} position.
Applicant Information:
--------------------
Name: {{ applicant_name }}
Email: {{ applicant_email }}
Phone: {{ applicant_phone }}
Professional Information:
-----------------------
Current Position: {{ current_position }}
Current Company: {{ current_company }}
Years of Experience: {{ years_of_experience }}
Application Details:
------------------
Applied for: {{ job_title }}
Application Date: {{ application_date|date:"F d, Y at h:i A" }}
{% if expected_salary %}
Expected Salary: {{ expected_salary }} {{ salary_currency }}
{% endif %}
{% if available_from %}
Available From: {{ available_from|date:"F d, Y" }}
{% endif %}
{% if notice_period %}
Notice Period: {{ notice_period }}
{% endif %}
Links:
------
{% if portfolio_url %}Portfolio: {{ portfolio_url }}{% endif %}
{% if linkedin_url %}LinkedIn: {{ linkedin_url }}{% endif %}
{% if github_url %}GitHub: {{ github_url }}{% endif %}
{% if website_url %}Website: {{ website_url }}{% endif %}
Cover Letter:
------------
{{ cover_letter }}
---
Resume is attached to this email.
Please log in to the admin panel to review the full application.