A simple and powerful student management system designed for a tuition center. This application allows for efficient batch management, student tracking, and profile management.
- Add and manage students
- Create and manage batches
- Track payment status
- View detailed student profiles
- Responsive and user-friendly interface
- Clone the repository:
git clone https://github.com/yourusername/project-name.git
- Navigate to the project directory:
cd project-name - Create and activate a virtual environment:
python -m venv env source env/bin/activate # On Windows use `env\Scripts\activate`
- Install the dependencies:
pip install -r requirements.txt
- Apply the migrations:
python manage.py migrate
- Run the development server:
python manage.py runserver
- Visit
http://127.0.0.1:8000in your web browser. - Log in as an admin to manage batches, students, and other entities.
Contributions are welcome! Please fork the repository and submit a pull request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/feature-name) - Commit your changes (
git commit -m 'Add some feature') - Push to the branch (
git push origin feature/feature-name) - Open a Pull Request
Django - The web framework used.