Pamela Fox
commited on
Commit
·
013c0dc
1
Parent(s):
2d04c5d
Quiz models
Browse files- .gitignore +1 -0
- manage.py +22 -0
- quizsite/__init__.py +0 -0
- quizsite/asgi.py +16 -0
- quizsite/settings.py +127 -0
- quizsite/urls.py +22 -0
- quizsite/wsgi.py +16 -0
- quizzes/__init__.py +0 -0
- quizzes/admin.py +7 -0
- quizzes/apps.py +6 -0
- quizzes/migrations/0001_initial.py +107 -0
- quizzes/migrations/__init__.py +0 -0
- quizzes/models.py +92 -0
- quizzes/tests.py +3 -0
- quizzes/urls.py +10 -0
- quizzes/views.py +7 -0
- requirements.txt +2 -0
.gitignore
CHANGED
@@ -1 +1,2 @@
|
|
1 |
.venv
|
|
|
|
1 |
.venv
|
2 |
+
__pycache__/
|
manage.py
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python
|
2 |
+
"""Django's command-line utility for administrative tasks."""
|
3 |
+
import os
|
4 |
+
import sys
|
5 |
+
|
6 |
+
|
7 |
+
def main():
|
8 |
+
"""Run administrative tasks."""
|
9 |
+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "quizsite.settings")
|
10 |
+
try:
|
11 |
+
from django.core.management import execute_from_command_line
|
12 |
+
except ImportError as exc:
|
13 |
+
raise ImportError(
|
14 |
+
"Couldn't import Django. Are you sure it's installed and "
|
15 |
+
"available on your PYTHONPATH environment variable? Did you "
|
16 |
+
"forget to activate a virtual environment?"
|
17 |
+
) from exc
|
18 |
+
execute_from_command_line(sys.argv)
|
19 |
+
|
20 |
+
|
21 |
+
if __name__ == "__main__":
|
22 |
+
main()
|
quizsite/__init__.py
ADDED
File without changes
|
quizsite/asgi.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""
|
2 |
+
ASGI config for quizsite project.
|
3 |
+
|
4 |
+
It exposes the ASGI callable as a module-level variable named ``application``.
|
5 |
+
|
6 |
+
For more information on this file, see
|
7 |
+
https://docs.djangoproject.com/en/4.1/howto/deployment/asgi/
|
8 |
+
"""
|
9 |
+
|
10 |
+
import os
|
11 |
+
|
12 |
+
from django.core.asgi import get_asgi_application
|
13 |
+
|
14 |
+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "quizsite.settings")
|
15 |
+
|
16 |
+
application = get_asgi_application()
|
quizsite/settings.py
ADDED
@@ -0,0 +1,127 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""
|
2 |
+
Django settings for quizsite project.
|
3 |
+
|
4 |
+
Generated by 'django-admin startproject' using Django 4.1.1.
|
5 |
+
|
6 |
+
For more information on this file, see
|
7 |
+
https://docs.djangoproject.com/en/4.1/topics/settings/
|
8 |
+
|
9 |
+
For the full list of settings and their values, see
|
10 |
+
https://docs.djangoproject.com/en/4.1/ref/settings/
|
11 |
+
"""
|
12 |
+
|
13 |
+
from pathlib import Path
|
14 |
+
|
15 |
+
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
16 |
+
BASE_DIR = Path(__file__).resolve().parent.parent
|
17 |
+
|
18 |
+
|
19 |
+
# Quick-start development settings - unsuitable for production
|
20 |
+
# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
|
21 |
+
|
22 |
+
# SECURITY WARNING: keep the secret key used in production secret!
|
23 |
+
SECRET_KEY = "django-insecure-dfln3fbd4mq*jof)t5($@tlgn98z^a)ar7aw^py7s(j#w^x01q"
|
24 |
+
|
25 |
+
# SECURITY WARNING: don't run with debug turned on in production!
|
26 |
+
DEBUG = True
|
27 |
+
|
28 |
+
ALLOWED_HOSTS = []
|
29 |
+
|
30 |
+
|
31 |
+
# Application definition
|
32 |
+
|
33 |
+
INSTALLED_APPS = [
|
34 |
+
'quizzes.apps.QuizzesConfig',
|
35 |
+
"django.contrib.admin",
|
36 |
+
"django.contrib.auth",
|
37 |
+
"django.contrib.contenttypes",
|
38 |
+
"django.contrib.sessions",
|
39 |
+
"django.contrib.messages",
|
40 |
+
"django.contrib.staticfiles",
|
41 |
+
]
|
42 |
+
|
43 |
+
MIDDLEWARE = [
|
44 |
+
"django.middleware.security.SecurityMiddleware",
|
45 |
+
"django.contrib.sessions.middleware.SessionMiddleware",
|
46 |
+
"django.middleware.common.CommonMiddleware",
|
47 |
+
"django.middleware.csrf.CsrfViewMiddleware",
|
48 |
+
"django.contrib.auth.middleware.AuthenticationMiddleware",
|
49 |
+
"django.contrib.messages.middleware.MessageMiddleware",
|
50 |
+
"django.middleware.clickjacking.XFrameOptionsMiddleware",
|
51 |
+
]
|
52 |
+
|
53 |
+
ROOT_URLCONF = "quizsite.urls"
|
54 |
+
|
55 |
+
TEMPLATES = [
|
56 |
+
{
|
57 |
+
"BACKEND": "django.template.backends.django.DjangoTemplates",
|
58 |
+
"DIRS": [],
|
59 |
+
"APP_DIRS": True,
|
60 |
+
"OPTIONS": {
|
61 |
+
"context_processors": [
|
62 |
+
"django.template.context_processors.debug",
|
63 |
+
"django.template.context_processors.request",
|
64 |
+
"django.contrib.auth.context_processors.auth",
|
65 |
+
"django.contrib.messages.context_processors.messages",
|
66 |
+
],
|
67 |
+
},
|
68 |
+
},
|
69 |
+
]
|
70 |
+
|
71 |
+
WSGI_APPLICATION = "quizsite.wsgi.application"
|
72 |
+
|
73 |
+
|
74 |
+
# Database
|
75 |
+
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases
|
76 |
+
|
77 |
+
DATABASES = {
|
78 |
+
"default": {
|
79 |
+
"ENGINE": "django.db.backends.postgresql_psycopg2",
|
80 |
+
"NAME": "quizsite",
|
81 |
+
"USER": "pamelafox",
|
82 |
+
"PASSWORD": "",
|
83 |
+
"HOST": "localhost",
|
84 |
+
"PORT": "",
|
85 |
+
}
|
86 |
+
}
|
87 |
+
|
88 |
+
# Password validation
|
89 |
+
# https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators
|
90 |
+
|
91 |
+
AUTH_PASSWORD_VALIDATORS = [
|
92 |
+
{
|
93 |
+
"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator",
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator",
|
97 |
+
},
|
98 |
+
{
|
99 |
+
"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator",
|
100 |
+
},
|
101 |
+
{
|
102 |
+
"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator",
|
103 |
+
},
|
104 |
+
]
|
105 |
+
|
106 |
+
|
107 |
+
# Internationalization
|
108 |
+
# https://docs.djangoproject.com/en/4.1/topics/i18n/
|
109 |
+
|
110 |
+
LANGUAGE_CODE = "en-us"
|
111 |
+
|
112 |
+
TIME_ZONE = "America/Los_Angeles"
|
113 |
+
|
114 |
+
USE_I18N = True
|
115 |
+
|
116 |
+
USE_TZ = True
|
117 |
+
|
118 |
+
|
119 |
+
# Static files (CSS, JavaScript, Images)
|
120 |
+
# https://docs.djangoproject.com/en/4.1/howto/static-files/
|
121 |
+
|
122 |
+
STATIC_URL = "static/"
|
123 |
+
|
124 |
+
# Default primary key field type
|
125 |
+
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
|
126 |
+
|
127 |
+
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
|
quizsite/urls.py
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""quizsite URL Configuration
|
2 |
+
|
3 |
+
The `urlpatterns` list routes URLs to views. For more information please see:
|
4 |
+
https://docs.djangoproject.com/en/4.1/topics/http/urls/
|
5 |
+
Examples:
|
6 |
+
Function views
|
7 |
+
1. Add an import: from my_app import views
|
8 |
+
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
9 |
+
Class-based views
|
10 |
+
1. Add an import: from other_app.views import Home
|
11 |
+
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
12 |
+
Including another URLconf
|
13 |
+
1. Import the include() function: from django.urls import include, path
|
14 |
+
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
15 |
+
"""
|
16 |
+
from django.contrib import admin
|
17 |
+
from django.urls import include, path
|
18 |
+
|
19 |
+
urlpatterns = [
|
20 |
+
path('quizzes/', include('quizzes.urls')),
|
21 |
+
path('admin/', admin.site.urls),
|
22 |
+
]
|
quizsite/wsgi.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""
|
2 |
+
WSGI config for quizsite project.
|
3 |
+
|
4 |
+
It exposes the WSGI callable as a module-level variable named ``application``.
|
5 |
+
|
6 |
+
For more information on this file, see
|
7 |
+
https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/
|
8 |
+
"""
|
9 |
+
|
10 |
+
import os
|
11 |
+
|
12 |
+
from django.core.wsgi import get_wsgi_application
|
13 |
+
|
14 |
+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "quizsite.settings")
|
15 |
+
|
16 |
+
application = get_wsgi_application()
|
quizzes/__init__.py
ADDED
File without changes
|
quizzes/admin.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.contrib import admin
|
2 |
+
from .models import Quiz, Question, FreeTextAnswer, MultipleChoiceAnswer
|
3 |
+
|
4 |
+
admin.site.register(Quiz)
|
5 |
+
admin.site.register(Question)
|
6 |
+
admin.site.register(FreeTextAnswer)
|
7 |
+
admin.site.register(MultipleChoiceAnswer)
|
quizzes/apps.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.apps import AppConfig
|
2 |
+
|
3 |
+
|
4 |
+
class QuizzesConfig(AppConfig):
|
5 |
+
default_auto_field = "django.db.models.BigAutoField"
|
6 |
+
name = "quizzes"
|
quizzes/migrations/0001_initial.py
ADDED
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Generated by Django 4.1.1 on 2022-09-14 18:17
|
2 |
+
|
3 |
+
import django.contrib.postgres.fields
|
4 |
+
from django.db import migrations, models
|
5 |
+
import django.db.models.deletion
|
6 |
+
|
7 |
+
|
8 |
+
class Migration(migrations.Migration):
|
9 |
+
|
10 |
+
initial = True
|
11 |
+
|
12 |
+
dependencies = []
|
13 |
+
|
14 |
+
operations = [
|
15 |
+
migrations.CreateModel(
|
16 |
+
name="Quiz",
|
17 |
+
fields=[
|
18 |
+
(
|
19 |
+
"id",
|
20 |
+
models.BigAutoField(
|
21 |
+
auto_created=True,
|
22 |
+
primary_key=True,
|
23 |
+
serialize=False,
|
24 |
+
verbose_name="ID",
|
25 |
+
),
|
26 |
+
),
|
27 |
+
("name", models.CharField(max_length=100)),
|
28 |
+
],
|
29 |
+
),
|
30 |
+
migrations.CreateModel(
|
31 |
+
name="Question",
|
32 |
+
fields=[
|
33 |
+
(
|
34 |
+
"id",
|
35 |
+
models.BigAutoField(
|
36 |
+
auto_created=True,
|
37 |
+
primary_key=True,
|
38 |
+
serialize=False,
|
39 |
+
verbose_name="ID",
|
40 |
+
),
|
41 |
+
),
|
42 |
+
("prompt", models.CharField(max_length=200)),
|
43 |
+
(
|
44 |
+
"answer_status",
|
45 |
+
models.CharField(default="unanswered", max_length=16),
|
46 |
+
),
|
47 |
+
(
|
48 |
+
"quiz",
|
49 |
+
models.ForeignKey(
|
50 |
+
on_delete=django.db.models.deletion.CASCADE, to="quizzes.quiz"
|
51 |
+
),
|
52 |
+
),
|
53 |
+
],
|
54 |
+
),
|
55 |
+
migrations.CreateModel(
|
56 |
+
name="MultipleChoiceAnswer",
|
57 |
+
fields=[
|
58 |
+
(
|
59 |
+
"id",
|
60 |
+
models.BigAutoField(
|
61 |
+
auto_created=True,
|
62 |
+
primary_key=True,
|
63 |
+
serialize=False,
|
64 |
+
verbose_name="ID",
|
65 |
+
),
|
66 |
+
),
|
67 |
+
("correct_answer", models.CharField(max_length=200)),
|
68 |
+
(
|
69 |
+
"choices",
|
70 |
+
django.contrib.postgres.fields.ArrayField(
|
71 |
+
base_field=models.CharField(blank=True, max_length=200),
|
72 |
+
size=None,
|
73 |
+
),
|
74 |
+
),
|
75 |
+
(
|
76 |
+
"question",
|
77 |
+
models.ForeignKey(
|
78 |
+
on_delete=django.db.models.deletion.CASCADE,
|
79 |
+
to="quizzes.question",
|
80 |
+
),
|
81 |
+
),
|
82 |
+
],
|
83 |
+
),
|
84 |
+
migrations.CreateModel(
|
85 |
+
name="FreeTextAnswer",
|
86 |
+
fields=[
|
87 |
+
(
|
88 |
+
"id",
|
89 |
+
models.BigAutoField(
|
90 |
+
auto_created=True,
|
91 |
+
primary_key=True,
|
92 |
+
serialize=False,
|
93 |
+
verbose_name="ID",
|
94 |
+
),
|
95 |
+
),
|
96 |
+
("correct_answer", models.CharField(max_length=200)),
|
97 |
+
("case_sensitive", models.BooleanField(default=False)),
|
98 |
+
(
|
99 |
+
"question",
|
100 |
+
models.ForeignKey(
|
101 |
+
on_delete=django.db.models.deletion.CASCADE,
|
102 |
+
to="quizzes.question",
|
103 |
+
),
|
104 |
+
),
|
105 |
+
],
|
106 |
+
),
|
107 |
+
]
|
quizzes/migrations/__init__.py
ADDED
File without changes
|
quizzes/models.py
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.db import models
|
2 |
+
from django.contrib.postgres import fields
|
3 |
+
|
4 |
+
|
5 |
+
class Quiz(models.Model):
|
6 |
+
name = models.CharField(max_length=100)
|
7 |
+
|
8 |
+
def __str__(self):
|
9 |
+
return f"<Quiz: {self.name}>"
|
10 |
+
|
11 |
+
def display(self):
|
12 |
+
# Display the quiz name
|
13 |
+
print(f"Welcome to the quiz on {self.name}!")
|
14 |
+
# Initialize the correct counter to 0
|
15 |
+
correct_count = 0
|
16 |
+
# Iterate through the questions
|
17 |
+
# Display each question
|
18 |
+
# Increment the correct counter accordingly
|
19 |
+
for question in self.questions:
|
20 |
+
question.display()
|
21 |
+
if question.answer_status == 'correct':
|
22 |
+
correct_count += 1
|
23 |
+
# Print the ratio of correct/total
|
24 |
+
print(f"You got {correct_count}/{len(self.questions)} correct.")
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
class Question(models.Model):
|
29 |
+
quiz = models.ForeignKey(Quiz, on_delete=models.CASCADE)
|
30 |
+
prompt = models.CharField(max_length=200)
|
31 |
+
answer_status = models.CharField(default='unanswered', max_length=16)
|
32 |
+
|
33 |
+
def __str__(self):
|
34 |
+
return f"<Question: {self.prompt}>"
|
35 |
+
|
36 |
+
def display(self):
|
37 |
+
print(self.prompt)
|
38 |
+
self.answer.display()
|
39 |
+
user_answer = input()
|
40 |
+
if self.answer.is_correct(user_answer):
|
41 |
+
print("You got it!")
|
42 |
+
self.answer_status = 'correct'
|
43 |
+
else:
|
44 |
+
print(f"Sorry, it was: {self.answer.correct_answer}")
|
45 |
+
self.answer_status = 'incorrect'
|
46 |
+
|
47 |
+
|
48 |
+
# Create your models here.
|
49 |
+
class FreeTextAnswer(models.Model):
|
50 |
+
question = models.ForeignKey(Question, on_delete=models.CASCADE)
|
51 |
+
correct_answer = models.CharField(max_length=200)
|
52 |
+
case_sensitive = models.BooleanField(default=False)
|
53 |
+
|
54 |
+
def __str__(self):
|
55 |
+
return f"<FreeTextAnswer: {self.correct_answer}>"
|
56 |
+
|
57 |
+
def is_correct(self, user_answer):
|
58 |
+
if not self.case_sensitive:
|
59 |
+
return user_answer.lower() == self.correct_answer.lower()
|
60 |
+
return user_answer == self.correct_answer
|
61 |
+
|
62 |
+
def display(self):
|
63 |
+
if self.case_sensitive:
|
64 |
+
print("Type your answer in (capitalization matters!):")
|
65 |
+
else:
|
66 |
+
print("Type your answer in (don't worry about capitalization):")
|
67 |
+
|
68 |
+
class MultipleChoiceAnswer(models.Model):
|
69 |
+
question = models.ForeignKey(Question, on_delete=models.CASCADE)
|
70 |
+
correct_answer = models.CharField(max_length=200)
|
71 |
+
choices = fields.ArrayField(models.CharField(max_length=200, blank=True))
|
72 |
+
|
73 |
+
def __str__(self):
|
74 |
+
return f"<MultipleChoiceAnswer: {self.correct_answer} of {self.choices}>"
|
75 |
+
|
76 |
+
def is_correct(self, user_answer):
|
77 |
+
"""Assumes user answer is number corresponding to answer."""
|
78 |
+
return self.choices[int(user_answer) - 1] == self.correct_answer
|
79 |
+
|
80 |
+
def is_correct(self, user_answer):
|
81 |
+
self.user_answer = int(user_answer)
|
82 |
+
self.user_answer -= 1
|
83 |
+
correct_index = self.choices.index(self.correct_answer)
|
84 |
+
if self.user_answer == correct_index:
|
85 |
+
return True
|
86 |
+
else:
|
87 |
+
return False
|
88 |
+
|
89 |
+
def display(self):
|
90 |
+
print("Type the number corresponding to the correct answer.")
|
91 |
+
for i in range(0, len(self.choices)):
|
92 |
+
print(f"{i + 1}. {self.choices[i]}")
|
quizzes/tests.py
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
from django.test import TestCase
|
2 |
+
|
3 |
+
# Create your tests here.
|
quizzes/urls.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.urls import path
|
2 |
+
|
3 |
+
from . import views
|
4 |
+
|
5 |
+
urlpatterns = [
|
6 |
+
path('', views.index, name='index'),
|
7 |
+
# ex: /polls/5/
|
8 |
+
path('<int:quiz_id>/', views.display, name='display'),
|
9 |
+
|
10 |
+
]
|
quizzes/views.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from django.http import HttpResponse
|
2 |
+
|
3 |
+
def index(request):
|
4 |
+
return HttpResponse("Here are all the quizzes")
|
5 |
+
|
6 |
+
def display(request, quiz_id):
|
7 |
+
return HttpResponse("You're looking at quiz %s." % quiz_id)
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
Django==4.1.1
|
2 |
+
psycopg2
|