A configurable quiz app for Django.
Project description
Django Multiple Choice Question
Installation
Install django-mcq
Run pip install django-mcq
.
Add 'quiz'
to your INSTALLED_APPS
setting.
INSTALLED_APPS = (
...
'quiz',
...
)
Add the following to your projects urls.py
file.
urlpatterns = [
...
path('quiz/', include('quiz.urls')),
]
Create a template quiz_base.html
file in templates folder:
<!doctype html>
<html lang="en">
<head>
{% block quiz_css %}{% endblock %}
</head>
<body>
{% block quiz_body %}{% endblock %}
{% block quiz_js %}{% endblock %}
</body>
</html>
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-mcq-0.1.tar.gz
(7.4 kB
view details)
Built Distribution
File details
Details for the file django-mcq-0.1.tar.gz
.
File metadata
- Download URL: django-mcq-0.1.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5527d42b1cb6aa92a027bf4703f3bdc360b52ebef014004e6a5a437dcf910f14 |
|
MD5 | beabca92d837a9c92fe1748485e5305c |
|
BLAKE2b-256 | 2a8cef6df4e848113b38313c68b3bdb398db76378521e3e8a274488ff12ef3cf |
File details
Details for the file django_mcq-0.1-py3-none-any.whl
.
File metadata
- Download URL: django_mcq-0.1-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ef1cc777975361a220a4df2e5f3a4bfbe8332d3693f68818a455f43391e096d |
|
MD5 | e5a05ffebe5e7e636cf591bbf21a03cf |
|
BLAKE2b-256 | 4692c75331423aefafc9692ed51ceaf7564429e77fdc9ed2b82e22d65c952fca |