Skip to content

Commit 28ef84f

Browse files
committed
initial commit
0 parents  commit 28ef84f

5,264 files changed

Lines changed: 857045 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
EMAIL_HOST_USER=enter_your_email_id
2+
3+
EMAIL_HOST_PASSWORD=enter_your_email_password
4+
5+
DB_NAME=enter_your_database_name
6+
7+
DB_USER=enter_your_database_user
8+
9+
DB_PASSWORD=enter_your_database_password
10+
11+
SECRET_KEY=enter_your_django_secret_key

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.env
2+
3+
mvenv
4+
5+
env
6+
7+
__pycache__
8+
9+
.DS_Store
10+
11+
.vscode
12+
13+
*.log
14+
15+
*.pem
16+
17+
*.csv

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Medam Greeshma
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# PLACEMENET MANAGEMENT SYSTEM
2+
3+
> DBMS Project (course work)
4+
5+
### Team
6+
7+
- [Atharva Parkhe](https://github.com/atharvparkhe) - Django (Backend Developer)
8+
- [Medam Greeshma](https://github.com/Greeshma2903/) - HTML, Bootstrap (Frontend Developer)
9+
- [Maheshwari Terse](https://github.com/maheshwari0310) - Django (Backend)
10+
11+
## Motivation
12+
The main objective of the placement management system is to reduce manual work and time. The purpose of this system is to automate the existing manual system with the help of computer software and store the data entered for a longer time with ease of access.
13+
14+
## Approach
15+
Our solution provides a web-based platform, where students of the college can register once and then get unique dashboards. The system will have different types of accounts for different types of users such as Admin, Student, and placement secretary. Hence this provides different access levels and makes sure the data is in the right hands.
16+
17+
The system intends to do user-friendly operations which may resolve ambiguity. The project is total management and informative system which provides up-to-date placement information on all the students in the college. The project facilitates a friendly, reliable and fast management system.
18+
19+
## ER Diagram
20+
![ER Diagram](https://github.com/Greeshma2903/placement-management-project/assets/70336930/6c094e12-f203-474e-b805-3becae943e47)
21+
22+
**SCHEMA:**
23+
1. Teacher (id, Name, Email, Phone, Password)
24+
2. Student (id, Name, Email, Phone, Password, Roll No, Bio, Skills, Resume, Profile Pic, LinkedIn Link, GitHub Link)
25+
3. Company (id,Company Name, Description, Address, Website Link)
26+
4. Job (id, Position, Company, Job Description, Requirements, Pay Rate, Last Date to Apply, Max. Applicants, Currents Applicants Count)
27+
5. JobApplication (id, Job, Applicant, Status)
28+
29+
30+
## Tech Stack
31+
- Frontend: HTML, CSS (Bootstrap)
32+
- Backend: Django
33+
- Database: SQLite
34+
35+
## Screenshots
36+
37+
<details>
38+
<summary>click here to see</summary>
39+
40+
41+
![login screen](https://github.com/Greeshma2903/placement-management-project/assets/70336930/5363c0d4-aa7f-4916-8985-23200f997ca0)
42+
![companies list](https://github.com/Greeshma2903/placement-management-project/assets/70336930/24ca3e14-135b-4ba1-888f-41d0f1792b99)
43+
![student login](https://github.com/Greeshma2903/placement-management-project/assets/70336930/77f6d1e6-5919-4ed0-9d7f-555769d70281)
44+
![placement officer login](https://github.com/Greeshma2903/placement-management-project/assets/70336930/1d3e12c2-8cc2-4628-9f34-1cadf4537f4d)
45+
![job listing](https://github.com/Greeshma2903/placement-management-project/assets/70336930/e7118236-b5de-420a-af11-339f9273e82c)
46+
![uploading details of students](https://github.com/Greeshma2903/placement-management-project/assets/70336930/6a007295-d4e3-4067-ade9-9d41fed16310)
47+
</details>

app/__init__.py

Whitespace-only changes.

app/admin.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from django.contrib import admin
2+
from .models import *
3+
4+
5+
class JobModelAdmin(admin.ModelAdmin):
6+
list_display = ["position", "company", "pay_rate", "is_active"]
7+
admin.site.register(JobModel, JobModelAdmin)
8+
9+
admin.site.register(CompanyModel)
10+
11+
12+
class JobApplicationModelAdmin(admin.ModelAdmin):
13+
list_display = ["job", "applicant", "status"]
14+
admin.site.register(JobApplicationModel, JobApplicationModelAdmin)

app/apps.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class AppConfig(AppConfig):
5+
default_auto_field = 'django.db.models.BigAutoField'
6+
name = 'app'

app/migrations/0001_initial.py

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Generated by Django 4.1.3 on 2022-12-22 16:55
2+
3+
from django.db import migrations, models
4+
import django.db.models.deletion
5+
import uuid
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
initial = True
11+
12+
dependencies = [
13+
]
14+
15+
operations = [
16+
migrations.CreateModel(
17+
name='CompanyModel',
18+
fields=[
19+
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
20+
('created_at', models.DateTimeField(auto_now=True)),
21+
('updated_at', models.DateTimeField(auto_now_add=True)),
22+
('company_name', models.CharField(max_length=50)),
23+
('logo', models.ImageField(upload_to='logo')),
24+
('address', models.TextField()),
25+
('desc', models.TextField(blank=True, null=True)),
26+
('web_link', models.URLField()),
27+
],
28+
options={
29+
'db_table': 'company',
30+
},
31+
),
32+
migrations.CreateModel(
33+
name='JobApplicationModel',
34+
fields=[
35+
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
36+
('created_at', models.DateTimeField(auto_now=True)),
37+
('updated_at', models.DateTimeField(auto_now_add=True)),
38+
('status', models.CharField(choices=[('Applied', 'Applied'), ('Placed', 'Placed'), ('Rejected', 'Rejected')], default=('Applied', 'Applied'), max_length=10)),
39+
],
40+
options={
41+
'db_table': 'job_application',
42+
},
43+
),
44+
migrations.CreateModel(
45+
name='JobModel',
46+
fields=[
47+
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
48+
('created_at', models.DateTimeField(auto_now=True)),
49+
('updated_at', models.DateTimeField(auto_now_add=True)),
50+
('position', models.CharField(max_length=50)),
51+
('description', models.TextField()),
52+
('requirements', models.TextField()),
53+
('last_apply_date', models.DateField()),
54+
('pay_rate', models.PositiveIntegerField()),
55+
('max_applicant', models.PositiveSmallIntegerField(blank=True, null=True)),
56+
('no_of_applicants', models.IntegerField(default=0)),
57+
('is_active', models.BooleanField(default=False)),
58+
('company', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='company_job_listing', to='app.companymodel')),
59+
],
60+
options={
61+
'db_table': 'job',
62+
},
63+
),
64+
]

app/migrations/0002_initial.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Generated by Django 4.1.3 on 2022-12-22 16:55
2+
3+
from django.db import migrations, models
4+
import django.db.models.deletion
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
initial = True
10+
11+
dependencies = [
12+
('authentication', '0002_initial'),
13+
('app', '0001_initial'),
14+
]
15+
16+
operations = [
17+
migrations.AddField(
18+
model_name='jobapplicationmodel',
19+
name='applicant',
20+
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='job_applicant', to='authentication.studentmodel'),
21+
),
22+
migrations.AddField(
23+
model_name='jobapplicationmodel',
24+
name='job',
25+
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='job_applied', to='app.jobmodel'),
26+
),
27+
]

app/migrations/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)