This is a school management system that uses Django Admin to do most of the work of managing students, fee submissions, teacher records etc..
Setting up Easy School is very easy.
It is best to use the python virtualenv
tool to build locally:
> virtualenv venv
> source venv/bin/activate
> git clone https://github.com/ZeroCoolHacker/easy-school .
Then you navigate to the base directory of the project and install the requirements in your virtual environment
> cd easy-school/easy-school
> pip install -r requirements.txt
And finally you make migrations to the database, create a super user, and run the server
> python manage.py makemigrations
> python manage.py migrate
> python manage.py createsuperuser
> python manage.py runserver
Then visit http://localhost:8000
to view the app. Alternatively you
can use foreman and gunicorn to run the server locally
> foreman start
Just follow the steps above to setup your environment. Read the Contribution Guide
- Manage Students Record in admin
- Submit fees in admin
- Show last submitted fee along with students
- Link Students to different Courses
- Search the record by various fields
- Minimize the number of queries for each view
- Add Teachers Record to admin
- Create Signup and Login view for teachers
- Attendence Management
- Result management for different Exams
This Project is Licensed under GLWTPL