Skip to main content

About Us


About Us


We provide django tutorials for people who are interested in doing carrier in django development.
Also we are publishing our project tutorial through this blog which will explain in detail every aspect of project. From this blog you can create project on your own.








If you have any queries or doubts you can contact us
django.webprojects@gmail.com 
  

Comments

Popular posts from this blog

1. Hospital Management System

In this tutorial we will learn how to build django project on Hospital Management System. Project will contain, 1) Admin 2) Receptionist 1) Admin can,      1. Add doctors      2. Delete doctors      3. Manage Salary of doctors      4. Also can see Patients      5. See appointments 2) Receptionist can,      1. Add Patient      2. Delete Patient      3. View Patient      4. Delete Patient      5. Add appointment      6. View appointment      7. Delete appointment Click here to see demo.... Software used:  Django 3.0.5 python 3.7 IDE used - VS Database - sqlite (no need to any other installation as it exist in django already) Javascirpt Bootstrap

4. Creating first template with navigation bar

1. For creating templates just create new folder called ' templates' in your project, where we will save all html templates 2. Now go in settings folder and in templates section, add name ' templates'  in DIRS like shown in fig., 3. Create new html page file in templates folder name as ' navbar.html'   & ' 'home.html'   which will use for creating navigation bar in all our templates. 4.       In navbar.html, navigation bar for our website which will be created using bootstrap. {% load static %} Hospital management system In home.html,  Homepage code should be like,      {% extends 'navbar.html' %} {% load static %} {% block body %} Multispecialist Hospital Choose Your Hospital Like Your Life Depends on It {% endblock %} 5.Now create urls.py file in your ' hospital'  (App Name) folder      6. In ...

2. Let's start project

1. Open cmd 2. Then go to the folder where you want to save your project like this, 3. After that just type command to start django project, django-admin startproject <name_of_project> As I have given project name as hospital_managemet_system hence my command is like as shown in above image. After pressing enter you will see hospital_management_system project folder is created at that location. 4. After opening this folder you will see one folder name as hospital_management_system and a file name called manage.py And inside hospital_management_system folder there are four files named __init__.py, settings.py, urls.py and wsgi.py 5. Here setup for django project is completed.