diff --git a/game/static/game/image/icons/python_black.svg b/game/static/game/image/icons/python_black.svg new file mode 100644 index 000000000..c0e08de77 --- /dev/null +++ b/game/static/game/image/icons/python_black.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/game/static/game/image/icons/python.svg b/game/static/game/image/icons/python_white.svg similarity index 100% rename from game/static/game/image/icons/python.svg rename to game/static/game/image/icons/python_white.svg diff --git a/game/templates/game/game.html b/game/templates/game/game.html index 5255b0c06..85bc6e133 100644 --- a/game/templates/game/game.html +++ b/game/templates/game/game.html @@ -171,7 +171,7 @@
@@ -346,7 +346,7 @@

{% trans "Python Program" %}
{% trans "Use the Python editor below to design your program, and then click play to try it out!" %}
diff --git a/game/views/level_selection.py b/game/views/level_selection.py index 208e0b587..34ab29545 100644 --- a/game/views/level_selection.py +++ b/game/views/level_selection.py @@ -131,7 +131,7 @@ def get_blockly_episodes(request): def get_python_episodes(request): return fetch_episode_data( - app_settings.EARLY_ACCESS_FUNCTION(request), 16, 22 + app_settings.EARLY_ACCESS_FUNCTION(request), 16, 15 )