diff --git a/NorahUniversity/__pycache__/settings.cpython-312.pyc b/NorahUniversity/__pycache__/settings.cpython-312.pyc index 648d4bf..c27f862 100644 Binary files a/NorahUniversity/__pycache__/settings.cpython-312.pyc and b/NorahUniversity/__pycache__/settings.cpython-312.pyc differ diff --git a/NorahUniversity/__pycache__/urls.cpython-312.pyc b/NorahUniversity/__pycache__/urls.cpython-312.pyc index 0cc7192..176d279 100644 Binary files a/NorahUniversity/__pycache__/urls.cpython-312.pyc and b/NorahUniversity/__pycache__/urls.cpython-312.pyc differ diff --git a/db.sqlite3 b/db.sqlite3 index 4df3956..e417df7 100644 Binary files a/db.sqlite3 and b/db.sqlite3 differ diff --git a/recruitment/__pycache__/models.cpython-312.pyc b/recruitment/__pycache__/models.cpython-312.pyc index 8037941..f5197fe 100644 Binary files a/recruitment/__pycache__/models.cpython-312.pyc and b/recruitment/__pycache__/models.cpython-312.pyc differ diff --git a/recruitment/__pycache__/urls.cpython-312.pyc b/recruitment/__pycache__/urls.cpython-312.pyc index dda7654..4c63ba3 100644 Binary files a/recruitment/__pycache__/urls.cpython-312.pyc and b/recruitment/__pycache__/urls.cpython-312.pyc differ diff --git a/recruitment/__pycache__/views.cpython-312.pyc b/recruitment/__pycache__/views.cpython-312.pyc index 23664e6..382f068 100644 Binary files a/recruitment/__pycache__/views.cpython-312.pyc and b/recruitment/__pycache__/views.cpython-312.pyc differ diff --git a/recruitment/models.py b/recruitment/models.py index 4b3a97b..8a4dfbc 100644 --- a/recruitment/models.py +++ b/recruitment/models.py @@ -242,6 +242,14 @@ class JobPosting(Base): self.save() +class JobPostingImage(models.Model): + job=models.ForeignKey('JobPosting',on_delete=models.CASCADE,related_name='post_images') + post_image = models.ImageField(upload_to='post/', + height_field='photo_height', + width_field='photo_width') + post_image_height = models.PositiveIntegerField(null=True, blank=True) + post_image_width = models.PositiveIntegerField(null=True, blank=True) + class Candidate(Base): class Stage(models.TextChoices): APPLIED = "Applied", _("Applied") diff --git a/templates/forms/form_templates_list.html b/templates/forms/form_templates_list.html index df3a47a..f051543 100644 --- a/templates/forms/form_templates_list.html +++ b/templates/forms/form_templates_list.html @@ -2,12 +2,12 @@ {% load static i18n crispy_forms_tags %} {% load partials %} -{% block title %}Form Templates - ATS{% endblock %} +{% block title %}Form Templates - {{ block.super }}{% endblock %} {% block customCSS %} + /* Empty State Icon Color */ + .empty-state i, .text-center i.fa-3x { + color: var(--kaauh-teal-dark) !important; + } + + /* Filter Buttons Container */ + .filter-buttons { + display: flex; + gap: 0.5rem; + } + + {% endblock %} {% block content %} -