Skip to content

cwtaras/django-schools

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Version Django Version CircleCI

This is an example project to illustrate an implementation of multiple user types. In this Django app, teachers can create quizzes and students can sign up and take quizzes related to their interests.

Django School Screenshot

Read the blog post How to Implement Multiple User Types with Django.

Running the Project Locally

First, clone the repository to your local machine:

git clone https://github.com/suhailvs/django-schools

Create Virtual Env and Install the requirements:

cd django-schools
python3 -m venv env
source ./env/bin/activate
pip install -r requirements.txt

Create the database and run the development server:

cd django_school
python manage.py migrate
python manage.py loaddata datas.json
python manage.py runserver

The project will be available at http://127.0.0.1:8000, Login using::

Teacher

  • username: teacher
  • password: teacher

Student

  • username: student
  • password: student

License

The source code is released under the MIT License.

Releases

No releases published

Packages

No packages published

Languages

  • Python 54.8%
  • HTML 41.3%
  • JavaScript 2.7%
  • CSS 1.2%