├── .gitignore ├── LICENSE ├── README.md ├── apps ├── core │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── core │ │ │ ├── base.html │ │ │ ├── frontpage.html │ │ │ ├── login.html │ │ │ └── signup.html │ ├── tests.py │ └── views.py ├── job │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20201003_0647.py │ │ ├── 0003_application.py │ │ ├── 0004_auto_20201031_1239.py │ │ ├── 0005_job_status.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── job │ │ │ ├── add_job.html │ │ │ ├── apply_for_job.html │ │ │ ├── edit_job.html │ │ │ ├── job_detail.html │ │ │ └── search.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── notification │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── context_processors.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20201029_0556.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── notification │ │ │ └── notifications.html │ ├── tests.py │ ├── urls.py │ ├── utilities.py │ └── views.py └── userprofile │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_conversationmessage.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── userprofile │ │ ├── dashboard.html │ │ ├── view_application.html │ │ └── view_dashboard_job.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── codingjobs ├── __init__.py ├── asgi.py ├── settings.py ├── settingsprod.py ├── urls.py └── wsgi.py ├── manage.py └── serverfiles └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/README.md -------------------------------------------------------------------------------- /apps/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/core/admin.py -------------------------------------------------------------------------------- /apps/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/core/apps.py -------------------------------------------------------------------------------- /apps/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/core/models.py -------------------------------------------------------------------------------- /apps/core/templates/core/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/core/templates/core/base.html -------------------------------------------------------------------------------- /apps/core/templates/core/frontpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/core/templates/core/frontpage.html -------------------------------------------------------------------------------- /apps/core/templates/core/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/core/templates/core/login.html -------------------------------------------------------------------------------- /apps/core/templates/core/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/core/templates/core/signup.html -------------------------------------------------------------------------------- /apps/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/core/tests.py -------------------------------------------------------------------------------- /apps/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/core/views.py -------------------------------------------------------------------------------- /apps/job/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/job/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/admin.py -------------------------------------------------------------------------------- /apps/job/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/api.py -------------------------------------------------------------------------------- /apps/job/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/apps.py -------------------------------------------------------------------------------- /apps/job/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/forms.py -------------------------------------------------------------------------------- /apps/job/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/job/migrations/0002_auto_20201003_0647.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/migrations/0002_auto_20201003_0647.py -------------------------------------------------------------------------------- /apps/job/migrations/0003_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/migrations/0003_application.py -------------------------------------------------------------------------------- /apps/job/migrations/0004_auto_20201031_1239.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/migrations/0004_auto_20201031_1239.py -------------------------------------------------------------------------------- /apps/job/migrations/0005_job_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/migrations/0005_job_status.py -------------------------------------------------------------------------------- /apps/job/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/job/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/models.py -------------------------------------------------------------------------------- /apps/job/templates/job/add_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/templates/job/add_job.html -------------------------------------------------------------------------------- /apps/job/templates/job/apply_for_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/templates/job/apply_for_job.html -------------------------------------------------------------------------------- /apps/job/templates/job/edit_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/templates/job/edit_job.html -------------------------------------------------------------------------------- /apps/job/templates/job/job_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/templates/job/job_detail.html -------------------------------------------------------------------------------- /apps/job/templates/job/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/templates/job/search.html -------------------------------------------------------------------------------- /apps/job/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/tests.py -------------------------------------------------------------------------------- /apps/job/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/urls.py -------------------------------------------------------------------------------- /apps/job/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/job/views.py -------------------------------------------------------------------------------- /apps/notification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/notification/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/admin.py -------------------------------------------------------------------------------- /apps/notification/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/apps.py -------------------------------------------------------------------------------- /apps/notification/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/context_processors.py -------------------------------------------------------------------------------- /apps/notification/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/notification/migrations/0002_auto_20201029_0556.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/migrations/0002_auto_20201029_0556.py -------------------------------------------------------------------------------- /apps/notification/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/notification/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/models.py -------------------------------------------------------------------------------- /apps/notification/templates/notification/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/templates/notification/notifications.html -------------------------------------------------------------------------------- /apps/notification/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/tests.py -------------------------------------------------------------------------------- /apps/notification/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/urls.py -------------------------------------------------------------------------------- /apps/notification/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/utilities.py -------------------------------------------------------------------------------- /apps/notification/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/notification/views.py -------------------------------------------------------------------------------- /apps/userprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/userprofile/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/admin.py -------------------------------------------------------------------------------- /apps/userprofile/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/apps.py -------------------------------------------------------------------------------- /apps/userprofile/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/userprofile/migrations/0002_conversationmessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/migrations/0002_conversationmessage.py -------------------------------------------------------------------------------- /apps/userprofile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/userprofile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/models.py -------------------------------------------------------------------------------- /apps/userprofile/templates/userprofile/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/templates/userprofile/dashboard.html -------------------------------------------------------------------------------- /apps/userprofile/templates/userprofile/view_application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/templates/userprofile/view_application.html -------------------------------------------------------------------------------- /apps/userprofile/templates/userprofile/view_dashboard_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/templates/userprofile/view_dashboard_job.html -------------------------------------------------------------------------------- /apps/userprofile/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/tests.py -------------------------------------------------------------------------------- /apps/userprofile/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/urls.py -------------------------------------------------------------------------------- /apps/userprofile/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/apps/userprofile/views.py -------------------------------------------------------------------------------- /codingjobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codingjobs/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/codingjobs/asgi.py -------------------------------------------------------------------------------- /codingjobs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/codingjobs/settings.py -------------------------------------------------------------------------------- /codingjobs/settingsprod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/codingjobs/settingsprod.py -------------------------------------------------------------------------------- /codingjobs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/codingjobs/urls.py -------------------------------------------------------------------------------- /codingjobs/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/codingjobs/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/manage.py -------------------------------------------------------------------------------- /serverfiles/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteinOveHelset/CodingJobs/HEAD/serverfiles/requirements.txt --------------------------------------------------------------------------------