University Site is a web application for managing university data.
The project implements CRUD operations for students, teachers, and specializations.
- 📚 Manage students (create, read, update, delete)
- 👨🏫 Manage teachers
- 🎓 Manage specializations
- 🔍 View lists with editing capabilities
- 🗂 Organized data management
- Backend: Django (Python)
- Frontend: HTML, CSS
- Database: SQLite
- Clone the repository
git clone https://github.com/your-username/university-site.git
cd university-site
- Create a virtual environment
python -m venv venv Linux / Mac source venv/bin/activate Windows venv\Scripts\activate
- Install dependencies
pip install -r requirements.txt
- Apply migrations
python manage.py migrate
- Run the server
python manage.py runserver
Open in your browser: http://127.0.0.1:8000/
📁 Project Structure university_app/ │── models.py │── views.py │── forms.py │── urls.py
Link to deployed project: https://university-site-z5vi.onrender.com