Tuition Management System Project in Django with Source Code
A Tuition Management System Project in Django is an easy project for beginners to learn how to build a web-based python Django project. We will provide you with the complete source code and database for the python project so that you can easily install it on your machine and learn how to program in Python Django.
To start creating a Tuition Management System Project in Python Django, makes sure that you have PyCharm Professional IDE Installed in your computer.
This Tuition Management System in Django Framework, Also includes a Download Source Code for free, just find the downloadable source code below and click download now.
About Project | Project Details | Definition |
---|---|---|
Project Name | Tuition Management System in Django | This Tuition Management System Project in Django is a Python-based project. Using Python, Django, and SQLite3 Database, we built a Tuition Management System web application It has client side and admin side which allows extra features like manage tutor, ads, history, users, clients feedback, and education. |
Python version (Recommended) | 3.8 Version | Python 3.8 introduces some new syntax to the language, as well as a few small modifications to existing behavior and, most importantly, a slew of performance improvements, following in the footsteps of the previous 3.7 version. |
Programming Language Used | Python Django Language | Django is a high-level Python web framework for building safe and maintainable websites quickly. Django is a web framework built by experienced developers that takes care of a lot of the heavy lifting so you can focus on developing your app instead of reinventing the wheel. |
Developer Name | itsourcecode.com | Free projects containing source code in Java, PHP, Python, Django, VB.Net, Visual Basic, C, C++, C#, Javascript, and other languages are available on this website. |
IDE Tool (Recommended) | Sublime, Visual Studio, PyCharm | Sublime Text is a source code editor that is available for purchase. It comes with built-in support for a variety of programming and markup languages. Plugins, which are often community-built and maintained under free-software licenses, allow users to extend the functionality of the system. Sublime Text has a Python API to help with plugins. |
Project Type | Web Application | A web application, unlike computer-based software programs that operate locally on the device’s operating system, is application software that runs on a web server. The user uses a web browser with an active network connection to access web apps. |
Database | SQLite | SQLite is a programming language that is used to create embedded software for devices such as televisions, cell phones, and cameras. It can handle HTTP requests with low to medium traffic. SQLite has the ability to compress files into smaller bundles with less metadata. SQLite is a temporary dataset that is used within an application to process data. |
Admin Features of Tuition Management System Project in Django
- Manage User– For the user, The admin can view, add, edit and delete user information
- Manage Ads– For the ads, The admin can add, edit and delete ads information.
- Login – By default the student need to login first to enable to access the system.
- Change Password– For the change password, The admin can change a password for better security.
- Manage Client Feedback– For the client feedback, The admin can add, edit and delete client feedback information.
Client Features of Tuition Management System Project in Django
- Sign up Client– For the sign up client, The client need to register first to create an account
- Manage Ads– For the ads, The client can post an ads about his/her tuition and location.
- Login – By default the client need to login first to enable to access the system.
- Change Password– For the change password, The client can change a password for better security.
- Manage Profile – For the profile, The client can update his/her profile information.
Tuition Management System Project in Django Steps on How to Create a Project
Time needed: 5 minutes.
Here’s the step’s on how to create a Tuition Management System Project in Django.
- Step 1: Open file.
First , open “pycharm professional” after that click “file” and click “new project“.
- Step 2: Choose Django.
Next, after click “new project“, choose “Django” and click.
- Step 3: Select file location.
Then, select a file location wherever you want.
- Step 4: Create application name.
After that, name your application.
- Step 5: Click create.
Lastly, finish creating project by clicking “create” button.
- Step 6: Start Coding.
Finally, we will now start adding functionality to our Django Framework by adding some functional codes.
Functionality and Codes of the Tuition Management System Project in Django
- Create template for the profile form in Tuition Management System Project in Django.
In this section, we will learn on how create a templates for the profile form. To begin with, add the following code in your tutor_profile.inc.html under the folder of tutor/templates/tutor.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
<style> .user-profile { margin: 10px 0; } .user-profile .user-image { height: 8rem; width: 8rem; border-radius: 50%; } #about div.collapse { display: block; height: 45px; overflow: hidden; } #about div.collapse.show { display: block; height: 100%; overflow: hidden; } #about div.collapsing[aria-expanded="false"] { height: 45px; } #about a.collapsed { display: block; margin-top: 10px; } #about a.collapsed:after { content: 'More'; } #about a:not(.collapsed):after { content: 'Less'; } </style> {% if editable %} <a href="{% url 'tutor-edit-profile' profile.pk %}">Edit profile</a> {% endif %} <div class="user-profile card"> <div class="card-header"> <table> <tr> <td style="padding-right: 15px"> <img class="card-img user-image" src="/static/profile_imgs/{{ profile_img }}" alt="A portrait of {{ profile.name }}" /> </td> <td> <h1 class="card-title"> {{ profile.name }} {% if profile.verification_set.first.verified %} <i class="text-info fas fa-check-circle" title="Verified tutor"></i> {% endif %} </h1> <h6 class="card-text"><i class="fa fa-graduation-cap"></i> {{ profile.bio }}</h6> <h6 class="card-text"><i class="fa fa-map-marked"></i> {{ profile.location }}</h6> <h6 class="card-text"><i class="fa fa-user"></i> {{ profile.gender }}</h6> </td> </tr> </table> </div> <div id="about" class="card-body"> <h4 class="card-title">{{ profile.title }}</h4> <div class="collapse" id="overview" aria-expanded="false">{{ profile.overview|linebreaks }}</div> <a role="button" class="collapsed" data-toggle="collapse" href="#overview" aria-expanded="false" aria-controls="overview"></a> </div> <div id="education" class="card-body"> <h4 class="card-title hr">Education</h4> {% for edu in education %} <div class="card-text" style="margin-bottom: 10px"> <h5 class="card-text">{{ edu.institute }}</h5> <h6 class="card-text small text-muted">{{ edu.degree }}, {{ edu.department }}</h6> <h6 class="card-text small text-muted">{{ edu.from_year|date:"Y" }} - {{ edu.to_year|date:"Y" }}, {{ edu.result }}</h6> </div> {% endfor %} </div> <div id="expertise" class="card-body"> <h4 class="card-title hr">Expertise</h4> <p class="card-text">{{ profile.expertise}}</p> </div> <div id="work_history" class="card-body"> <h4 class="card-title hr">Tuition History</h4> {% if work_history %} {% for work in work_history %} <div class="card"> <div class="card-body"> <table class="w-100"> <tr> <td> <h6 class="card-title">{{ work.ad.title }}</h6> <p class="card-text small">{{ work.from_date|date:"M Y" }} - {{ work.to_date|date:"M Y" }}, {{ work.ad.std_count }} student(s), {{ work.ad.days }} days a week<br> {{ work.ad.grade }} ({{ work.ad.type }}), {{ work.ad.subjects }} </p> </td> <td class="text-right">Salary<br><i class="fa">৳</i>{{ work.ad.salary }}</td> </tr> </table> <div class="feedback"> {% with feedback=work.ad.clientfeedback_set.first %} {% if feedback %} <hr> {% include 'tutor/feedback.inc.html' %} {% endif %} {% endwith %} </div> </div> </div> {% endfor %} {% else %} <p>No history found.</p> {% endif %} </div> </div> |
- Create template for the client profile form in Tuition Management System Project in Django.
In this section, we will learn on how create a templates for the client profile form. To start with, add the following code in your view_ad.html under the folder of client/templates/client.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
{% extends 'client/base_client.html' %} {% block content %} <style> div.view-ad { margin-top: 1rem; margin-bottom: 10px; } </style> <div class="view-ad"> {% include 'client/single_ad.inc.html' %} </div> {% if proposals %} <div class="prop_parent"> <div class="h5">{{ proposals.count }} proposal(s) received.</div> {% for proposal in proposals %} <a class="btn btn-light d-block text-left" data-toggle="collapse" href="#history_active" role="button" aria-expanded="false" aria-controls="history_active">{{ proposal.tutor.name }}</a> <div class="collapse" id="history_active"> <div class="container"> <p>{{ proposal.proposal }}</p> {% with answers=proposal.answer_set %} {% if answers %} <ol> {% for answer in answers.all %} <li><span class="font-weight-bold">{{ answer.question.question }}</span><br>{{ answer.answer }}</li> {% endfor %} </ol> {% endif %} {% endwith %} <a href="{% url 'client-profile' proposal.tutor.pk %}" class="btn btn-small btn-light">View profile</a> <a href="{% url 'client-accept' feed.pk proposal.tutor.pk %}" class="btn btn-small btn-dark">Accept</a> </div> </div> {% endfor %} </div> {% endif %} {% if assignee %} <p>Assigned to <a href="{% url 'client-profile' assignee.tutor.pk %}">{{ assignee.tutor.name }}</a></p> {% endif %} {% if running %} <a href="{% url 'client-terminate' feed.pk %}" class="btn btn-dark btn-small m-1">End tuition</a> {% endif %} {% if c_feedback %} {% with feedback=c_feedback %} {% with whos_feedback='Your' %} {% include 'tutor/feedback.inc.html' %} {% endwith %} {% endwith %} {% elif assignee and not running %} <a href="{% url 'client-feedback' feed.pk %}" class="btn btn-dark btn-small m-1">Provide feedback</a> {% endif %} {% if t_feedback %} {% with feedback=t_feedback %} {% with whos_feedback="Tutor's" %} {% include 'tutor/feedback.inc.html' %} {% endwith %} {% endwith %} {% endif %} {% endblock content %} |
- Create template for the ads post form in Tuition Management System Project in Django.
In this section, we will learn on how create a templates for the ads post form. To start with, add the following code in your new_ad.html under the folder of client/templates/client.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
{% extends 'client/base_client.html' %} {% block content %} <h1>Post a New Ad</h1> <form method="POST"> <fieldset class="form-group"> {% csrf_token %} <label for="title" class="sr-only">Ad title</label> <input type="text" class="form-control" id="title" name="title" placeholder="Enter a title" value="{{ title }}" required> <label for="description" class="sr-only">Ad description</label> <textarea class="form-control" rows="5" id="description" name="description" placeholder="Enter a short description" required>{{ description }}</textarea> <label for="questions" class="sr-only">Enter optional question</label> <textarea class="form-control" rows="3" id="questions" name="questions" placeholder="Enter optional questions separated by new lines (ie. enter)" required>{{ questions }}</textarea> <label for="subjects" class="sr-only">Subjects to be taught</label> <input type="text" class="form-control" id="subjects" name="subjects" placeholder="Enter subjects to be taught" value="{{ subjects }}" required> <label for="type" class="sr-only">Version/Medium</label> <input type="text" class="form-control" id="type" name="type" placeholder="Enter version/medium (eg. Pilipino Medium, English Medium)" value="{{ type }}" required> <label for="grade" class="sr-only">Class</label> <input type="text" class="form-control" id="grade" name="grade" placeholder="Enter class (eg. Class 10, HSC prep, etc.)" value="{{ grade }}" required> Gender: <label><input type="radio" id="gender" name="gender" value="male" required> Male</label> <label><input type="radio" id="gender" name="gender" value="female" required> Female</label> <label><input type="radio" id="gender" name="gender" value="mixed" required> Mixed</label><br> <label for="std_count" class="sr-only">Student count</label> <input type="number" class="form-control" id="std_count" name="std_count" placeholder="Number of students" value="{{ std_count }}" required> Preferred gender for tutor: <label><input type="radio" id="pref_gender" name="pref_gender" value="male" required> Male</label> <label><input type="radio" id="pref_gender" name="pref_gender" value="female" required> Female</label> <label><input type="radio" id="pref_gender" name="pref_gender" value="any" required> Any</label><br> <label for="time" class="sr-only">Teaching time</label> <input type="text" class="form-control" id="time" name="time" placeholder="Teaching time (eg. 5.00 PM - 7:00 PM, Evening, etc)" value="{{ time }}" required> <label for="days" class="sr-only">How many days a week?</label> <input type="text" class="form-control" id="days" name="days" placeholder="How many days a week?" value="{{ days }}" required> <label for="location" class="sr-only">Tuition location</label> <input type="text" class="form-control" id="location" name="location" placeholder="Enter tuition location" value="{{ location }}" required> <label for="salary" class="sr-only">Salary per month</label> <input type="number" class="form-control" id="salary" name="salary" placeholder="Enter salary per month" value="{{ salary }}" required> <label for="timeout" class="sr-only">Run this until</label> <input type="date" class="form-control" id="timeout" name="timeout" placeholder="Enter a date until which the ad will run (dd/mm/yyyy)" value="{{ timout }}" required> <button type="submit" class="btn btn-dark">Submit</button> </fieldset> </form> {% endblock content %} |
- Create template for the base client in Tuition Management System Project in Django.
In this section, we will learn on how create a templates for the base client. To start with, add the following code in your base_client.html under the folder of client/templates/client/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
{% load static %} <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="stylesheet" href="{% static 'vendor/bootstrap/css/bootstrap.min.css' %}"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css" integrity="sha256-UzFD2WYH2U1dQpKDjjZK72VtPeWP50NoJjd26rnAdUI=" crossorigin="anonymous" /> <link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet"> <title>Tuition Management System</title> <link href="{% static 'css/grayscale.min.css' %}" rel="stylesheet"> </head> <body style="background-color: cornsilk;"> <nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-success"> <div class="container"> <a class="navbar-brand js-scroll-trigger" href="{% url 'client-home' %}">Tuition Management System</a> <div class=""> <ul class="navbar-nav ml-auto"> <li class="nav-item"> <a class="nav-link" href="{% url 'client-new' %}">Post Ad</a> </li> </ul> </div> <button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"> Menu <i class="fas fa-bars"></i> </button> <div class="collapse navbar-collapse" id="navbarResponsive"> <ul class="navbar-nav ml-auto"> <li class="nav-item"> <a class="nav-link" href="{% url 'tutor-logout' %}">Logout</a> </li> </ul> </div> </div> </nav> <header style="padding-top: 56px"> <div class="container"> <div class="row"> <nav class="col-md-3 col-lg-2 sidebar"> <div class="position-fixed"> <!-- fix for xs devices --> <ul class="nav flex-column"> <li class="nav-item"> <a class="nav-link {{ client_home }}" href="{% url 'client-home' %}"> <i class="fa fa-home"></i> Home {% if client_home %} <span class="sr-only">(current)</span> {% endif %} </a> </li> <li class="nav-item"> <a class="nav-link {{ client_running }}" href="{% url 'client-running' %}"> <i class="far fa-hourglass"></i> Running {% if client_running %} <span class="sr-only">(current)</span> {% endif %} </a> </li> <li class="nav-item"> <a class="nav-link {{ client_history }}" href="{% url 'client-history' %}"> <i class="fa fa-history"></i> History {% if client_history %} <span class="sr-only">(current)</span> {% endif %} </a> </li> <li class="nav-item"> <a class="nav-link {{ client_settings }}" href="{% url 'client-settings' %}"> <i class="fa fa-cog"></i> Settings {% if client_settings %} <span class="sr-only">(current)</span> {% endif %} </a> </li> </ul> </div> </nav> <div class="col-md-9 main-section"> {% if messages %} {% for message in messages %} {% if message.tags == 'error' %} <div class="alert alert-danger">{{ message }}</div> {% else %} <div class="alert alert-{{ message.tags }}">{{ message }}</div> {% endif %} {% endfor %} {% endif %} {% block content %}{% endblock %} </div> </div> </div> </header> {# imports #} <script src="{% static 'vendor/jquery/jquery.min.js' %}"></script> <script src="{% static 'vendor/bootstrap/js/bootstrap.bundle.min.js' %}"></script> <script src="{% static 'vendor/jquery-easing/jquery.easing.min.js' %}"></script> <script src="{% static 'js/grayscale.min.js' %}"></script> <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script> </body> </html> |
Downloadable Source Code Below.
Anyway, if you want to level up your programming knowledge, especially python, try this new article I’ve made for you Best Python Projects with source code for Beginners. But If you’re going to focus on web development using Django, you can download here from our list of Best Django Projects with source code based on real-world projects.
How To Run The Tuition Management System Project in Django?
- Step 1: Extract/unzip the file
- Step 2: Go inside the project folder, open cmd and type the following commands to install Django Framework and run the webserver:
- pip install -r requirements.txt
- python manage.py migrate
- python manage.py runserver
- Step 3: Finally, open the browser and go to http://127.0.0.1:8000/
Summary
In summary, this 2022 Tuition Management System Project in Django with Source Code can be useful to students or professional who wants to learn python programming language. This project can also be modified to fit your personal requirements. Hope this project will help you to improve your skills. Happy Coding!
- How To Make A Point Of Sale System In Python
- Best Python Projects for Beginners
- Python MySQL Connection: Simple Python Step by Step Guide
- Python PIP Command Set-up / Fix: Step by Step Guide
- Random Password Generator in Python Projects With Source Code 2020
- Python Range Function|Range in Python Explained with Examples 2020
- School Management System Project In Django With Source Code
- Django Login And Registration With Source Code
- CRUD App In Django With Source Code
- Drag And Drop JavaScript With Source Code
- Todo List App Django With Source Code
Inquiries
If you have any questions or suggestions about Tuition Management System Project in Django with Source Code, please feel free to leave a comment below.