-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
292 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Module for Django system configuration.""" | ||
|
||
__version__ = "6.3.0" | ||
__version__ = "6.4.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"""Module for the MOOCs application.""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
"""Application configuration for the MOOCs application.""" | ||
|
||
from django.apps import AppConfig | ||
|
||
|
||
class MoocsConfig(AppConfig): | ||
"""Configuration object for the MOOCs application.""" | ||
|
||
name = "moocs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
"""URL routing for the moocs application.""" | ||
|
||
from django.urls import path | ||
|
||
from . import views | ||
|
||
app_name = 'moocs' | ||
urlpatterns = [ | ||
path( | ||
'', | ||
views.MoocsIndexView.as_view(), | ||
name="index" | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
"""Views for the MOOCs application.""" | ||
|
||
from django.views.generic import TemplateView | ||
|
||
|
||
class MoocsIndexView(TemplateView): | ||
"""View for the MOOCs homepage that renders from a template.""" | ||
|
||
template_name = "moocs/index.html" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+914 KB
...es/mooc/teaching-computational-thinking/Error Detection and Correction - Will It Scan.pdf
Binary file not shown.
Binary file added
BIN
+299 KB
...atic/files/mooc/teaching-computational-thinking/HCI - Heuristics lesson - Bingo board.pdf
Binary file not shown.
Binary file added
BIN
+953 KB
csunplugged/static/files/mooc/teaching-computational-thinking/HCI - Heuristics lesson.pdf
Binary file not shown.
Binary file added
BIN
+747 KB
...files/mooc/teaching-computational-thinking/HCI - The Stroop effect lesson - Printable.pdf
Binary file not shown.
Binary file added
BIN
+1020 KB
...gged/static/files/mooc/teaching-computational-thinking/HCI - The Stroop effect lesson.pdf
Binary file not shown.
Binary file added
BIN
+1.2 MB
csunplugged/static/files/mooc/teaching-computational-thinking/HCI - Think-aloud lesson.pdf
Binary file not shown.
Binary file added
BIN
+503 KB
...oc/teaching-computational-thinking/Image representation - Exploring pixels worksheets.pdf
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
edX logo is a registered trademarks of edX Inc. All Rights Reserved. | ||
Used with permission from https://www.edx.org/media-kit |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.