Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vijaythapa333/django-student-management-system
This is a Simple Student Management System Developed for Educational Purpose using Python (Django).
https://github.com/vijaythapa333/django-student-management-system
django
Last synced: 6 days ago
JSON representation
This is a Simple Student Management System Developed for Educational Purpose using Python (Django).
- Host: GitHub
- URL: https://github.com/vijaythapa333/django-student-management-system
- Owner: vijaythapa333
- Created: 2020-06-21T10:53:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-02T10:27:18.000Z (about 1 year ago)
- Last Synced: 2024-12-14T14:08:25.594Z (13 days ago)
- Topics: django
- Language: JavaScript
- Homepage:
- Size: 17.5 MB
- Stars: 367
- Watchers: 13
- Forks: 243
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Student Management System (beta)
This is a Simple Student Management System Developed for Educational Purpose using Python (Django).
Feel free to make changes based on your requirements.[Project Demo on YouTube](https://www.youtube.com/watch?v=kArCR96m7uo "Django Student Management System Demo")
I've created this project while learnging Django and followed tutorial series from **SuperCoders**
And if you like this project then ADD a STAR ⭐️ to this project 👆
## Features of this Project
### A. Admin Users Can
1. See Overall Summary Charts of Stuudents Performance, Staffs Perfomrances, Courses, Subjects, Leave, etc.
2. Manage Staffs (Add, Update and Delete)
3. Manage Students (Add, Update and Delete)
4. Manage Course (Add, Update and Delete)
5. Manage Subjects (Add, Update and Delete)
6. Manage Sessions (Add, Update and Delete)
7. View Student Attendance
8. Review and Reply Student/Staff Feedback
9. Review (Approve/Reject) Student/Staff Leave### B. Staff/Teachers Can
1. See the Overall Summary Charts related to their students, their subjects, leave status, etc.
2. Take/Update Students Attendance
3. Add/Update Result
4. Apply for Leave
5. Send Feedback to HOD### C. Students Can
1. See the Overall Summary Charts related to their attendance, their subjects, leave status, etc.
2. View Attendance
3. View Result
4. Apply for Leave
5. Send Feedback to HOD## Support Developer
1. Subscribe & Share my YouTube Channel - https://bit.ly/vijay-thapa-online-courses
2. Add a Star 🌟 to this 👆 Repository## Donate
**[PayPal](https://bit.ly/support-vijay-thapa)**
**[Buy me a Coffee ☕️](https://www.buymeacoffee.com/vijaythapa)**
**Donate by wire transfer:** E-Mail at *[email protected]* for wire transfer details.
## How to Install and Run this project?
### Pre-Requisites:
1. Install Git Version Control
[ https://git-scm.com/ ]2. Install Python Latest Version
[ https://www.python.org/downloads/ ]3. Install Pip (Package Manager)
[ https://pip.pypa.io/en/stable/installing/ ]*Alternative to Pip is Homebrew*
### Installation
**1. Create a Folder where you want to save the project****2. Create a Virtual Environment and Activate**
Install Virtual Environment First
```
$ pip install virtualenv
```Create Virtual Environment
For Windows
```
$ python -m venv venv
```
For Mac
```
$ python3 -m venv venv
```Activate Virtual Environment
For Windows
```
$ source venv/scripts/activate
```For Mac
```
$ source venv/bin/activate
```**3. Clone this project**
```
$ git clone https://github.com/vijaythapa333/django-student-management-system.git
```Then, Enter the project
```
$ cd django-student-management-system
```**4. Install Requirements from 'requirements.txt'**
```python
$ pip install -r requirements.txt
```**5. Add the hosts**
- Got to settings.py file
- Then, On allowed hosts, Add [‘*’].
```python
ALLOWED_HOSTS = ['*']
```
*No need to change on Mac.***6. Now Run Server**
Command for PC:
```python
$ python manage.py runserver
```Command for Mac:
```python
$ python3 manage.py runserver
```**7. Login Credentials**
Create Super User (HOD)
```
$ python manage.py createsuperuser
```
Then Add Email, Username and Password**or Use Default Credentials**
*For HOD /SuperAdmin*
Email: [email protected]
Password: admin*For Staff*
Email: [email protected]
Password: staff*For Student*
Email: [email protected]
Password: student## For Sponsor or Projects Enquiry
1. Email - [email protected]
2. LinkedIn - [vijaythapa](https://www.linkedin.com/in/vijaythapa "Vijay Thapa on LinkedIn")