This is a dynamic django CRUD app which has two pages(apps), One for applying jobs and another for displaying it with filtering applicants based on their skillsets.
-
This is application page(app) which takes candidate's name, email, phone number and skills and store these values to database(sqlite).
-
This is submission page(app) which shows the all submissions in three colour(red, yellow and green). The colour is decided by compactibility scale which is measured by the skills defined by employer with skills of apllicant that they have mentioned in application page.
- If Applicant's skills matches 80% or more, then his entry will be displayed in green(most compactible).
- If Applicant's skills matches 40% or more, then his entry will be displayed in yellow(some extent compactible).
- If Applicant's skills matches 80% or more, then his entry will be displayed in green(least compactible).
- Pyhton(backend)
- Django(RestAPI)
- HTML, CSS, JavaScript and Bootstrap(frontend)
- SQLite(Database)