Skip to content
Snippets Groups Projects
Commit 636d8d30 authored by fu2662cw's avatar fu2662cw :speech_balloon:
Browse files

Merge Master into current branch to resolve linter issues

parents 11f8faed 052a1e0e
No related branches found
No related tags found
No related merge requests found
""" Here is the place to register the Models to be seen in the admin interface """
from django.contrib import admin from django.contrib import admin
# Register your models here. # Register your models here.
......
""" Application Configuration for the quiz app """
from django.apps import AppConfig from django.apps import AppConfig
class QuizConfig(AppConfig): class QuizConfig(AppConfig):
"""Application Config for the quiz app"""
default_auto_field = "django.db.models.BigAutoField" default_auto_field = "django.db.models.BigAutoField"
name = "quiz" name = "quiz"
from django.shortcuts import render """ Defines the views for the quiz app """
# Create your views here. # Create your views here.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment