Courses is a simple Django app to manage online courses (education). Application is already used by civic association SPy o.z. (non-profit) for project "Teaching with hardware" in Slovak "Učíme s hardvérom": https://kurzy.ucimesharverom.sk
Project "Učíme s hardvérom" is run in Slovak language (however this app is in English, but has Slovak translations) and is aimed for Slovak teachers to introduce hardware (such as BBC microbit) into computing lessons at primary and secondary schools.
Read more in our **documentation**.
Install django-courses via pip:
pip install django-courses
Alternatively install latest development version from Github:
pip install https://github.com/vault19/django-courses/archive/refs/heads/main.zip
Add "courses" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'wkhtmltopdf', 'courses', ]
Include the polls URLconf in your project urls.py like this:
path("", include("courses.urls")),
Run python manage.py migrate to create the courses tables in DB.
Start the development server and visit http://127.0.0.1:8000/admin/ to manage your courses (you'll need the Admin app enabled).
Visit http://127.0.0.1:8000/ to view the courses list.
All contributions are welcome! It doesnt have to be code, there are more possibilities how to get involved.
We have written extensive how to for beginners. Read more in our documentation.
Vault19 o.z. (non profit micro hackerspace) did this app because SPy o.z. (non profit supporting Slovak Python community) needed something for better management of their courses. We like to program and we wanted to design a clean Django app and learn one or two things in the process...