codeforlife-portal 1.0.0.post0.dev708__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- codeforlife-portal-1.0.0.post.dev708/MANIFEST.in +7 -0
- codeforlife-portal-1.0.0.post.dev708/PKG-INFO +11 -0
- codeforlife-portal-1.0.0.post.dev708/README.md +47 -0
- codeforlife-portal-1.0.0.post.dev708/codeforlife_portal.egg-info/PKG-INFO +11 -0
- codeforlife-portal-1.0.0.post.dev708/codeforlife_portal.egg-info/SOURCES.txt +663 -0
- codeforlife-portal-1.0.0.post.dev708/codeforlife_portal.egg-info/dependency_links.txt +1 -0
- codeforlife-portal-1.0.0.post.dev708/codeforlife_portal.egg-info/not-zip-safe +1 -0
- codeforlife-portal-1.0.0.post.dev708/codeforlife_portal.egg-info/requires.txt +43 -0
- codeforlife-portal-1.0.0.post.dev708/codeforlife_portal.egg-info/top_level.txt +5 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/captcha.py +38 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/mail.py +93 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/middleware/__init__.py +0 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/middleware/basicauth.py +24 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/middleware/exceptionlogging.py +8 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/permissions.py +2 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/static/apple-touch-icon-120x120.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/static/apple-touch-icon-152x152.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/static/apple-touch-icon-180x180.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/static/apple-touch-icon-76x76.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/static/apple-touch-icon.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/static/robots.txt +2 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/templates/deploy/csrf_failure.html +18 -0
- codeforlife-portal-1.0.0.post.dev708/deploy/views.py +5 -0
- codeforlife-portal-1.0.0.post.dev708/example_project/__init__.py +0 -0
- codeforlife-portal-1.0.0.post.dev708/example_project/example_project/__init__.py +1 -0
- codeforlife-portal-1.0.0.post.dev708/example_project/example_project/settings.py +78 -0
- codeforlife-portal-1.0.0.post.dev708/example_project/example_project/wsgi.py +57 -0
- codeforlife-portal-1.0.0.post.dev708/example_project/manage.py +10 -0
- codeforlife-portal-1.0.0.post.dev708/portal/__init__.py +40 -0
- codeforlife-portal-1.0.0.post.dev708/portal/_version.py +21 -0
- codeforlife-portal-1.0.0.post.dev708/portal/admin.py +94 -0
- codeforlife-portal-1.0.0.post.dev708/portal/app_settings.py +58 -0
- codeforlife-portal-1.0.0.post.dev708/portal/autoconfig.py +196 -0
- codeforlife-portal-1.0.0.post.dev708/portal/beta.py +44 -0
- codeforlife-portal-1.0.0.post.dev708/portal/emailMessages.py +196 -0
- codeforlife-portal-1.0.0.post.dev708/portal/forms/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/forms/admin_login.py +46 -0
- codeforlife-portal-1.0.0.post.dev708/portal/forms/auth_forms.py +64 -0
- codeforlife-portal-1.0.0.post.dev708/portal/forms/home.py +84 -0
- codeforlife-portal-1.0.0.post.dev708/portal/forms/organisation.py +122 -0
- codeforlife-portal-1.0.0.post.dev708/portal/forms/play.py +259 -0
- codeforlife-portal-1.0.0.post.dev708/portal/forms/registration.py +221 -0
- codeforlife-portal-1.0.0.post.dev708/portal/forms/teach.py +523 -0
- codeforlife-portal-1.0.0.post.dev708/portal/handlers.py +50 -0
- codeforlife-portal-1.0.0.post.dev708/portal/helpers/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/helpers/emails.py +136 -0
- codeforlife-portal-1.0.0.post.dev708/portal/helpers/generators.py +79 -0
- codeforlife-portal-1.0.0.post.dev708/portal/helpers/location.py +138 -0
- codeforlife-portal-1.0.0.post.dev708/portal/helpers/password.py +44 -0
- codeforlife-portal-1.0.0.post.dev708/portal/helpers/regex.py +54 -0
- codeforlife-portal-1.0.0.post.dev708/portal/middleware/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/middleware/ratelimit_login_attempts.py +57 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0001_squashed_0041_new_news.py +574 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0042_school_country.py +55 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0043_auto_20150430_0952.py +55 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0044_auto_20150430_0959.py +71 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0045_auto_20150430_1446.py +55 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0046_auto_20150723_1101.py +54 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0047_remove_userprofile_avatar.py +18 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0048_plural_management_frontnews.py +18 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0049_refactor_emailverifications.py +38 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0050_refactor_emailverifications_2.py +42 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0051_add_missing_ev_records.py +44 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0052_refactor_emailverifications_3.py +17 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0053_refactor_teacher_student_1.py +64 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/0054_pending_join_request_can_be_blank.py +19 -0
- codeforlife-portal-1.0.0.post.dev708/portal/migrations/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/models.py +248 -0
- codeforlife-portal-1.0.0.post.dev708/portal/permissions.py +72 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/email_media/logo_c4l_hexa.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/bootstrap.css +8175 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/colorbox.css +107 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/common.css +39 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/KS-level-sprite.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/Menu-arrow-down.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/animated-overlay.gif +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-bg_flat_10_000000_40x100.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-icons_222222_256x240.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-icons_228ef1_256x240.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-icons_ef8c08_256x240.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-icons_ffd27a_256x240.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/images/ui-icons_ffffff_256x240.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/jquery-ui.css +1251 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/jquery-ui.structure.css +833 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/jquery-ui.theme.css +439 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/list.css +274 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/materials.css +417 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/noJS.css +100 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/reset.css +123 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/solution_selection.css +72 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/css/tables.css +147 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/fonts/glyphicons-halflings-regular.eot +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/fonts/glyphicons-halflings-regular.svg +288 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/fonts/glyphicons-halflings-regular.ttf +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/fonts/glyphicons-halflings-regular.woff +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/fonts/glyphicons-halflings-regular.woff2 +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/10x_logo.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/RR_logo_blank.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/RRlogo_on_less_green_small.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/a_fun_game_for_students.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/about_blockly.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/about_us_hero.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/aimmo_landing_hero.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/background_blue.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/background_orange.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/barefoot_logo.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/bcs_logo.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/certificates.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/colorboxImages/border.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/colorboxImages/controls.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/colorboxImages/loading.gif +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/colorboxImages/loading_background.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/colorboxImages/overlay.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/confirmation_tick.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/cross.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/dee.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/dee_hi_res.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/facebook.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/footer_arrow.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/form_chooser_arrow.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/future.svg +21 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/gameplay_video.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/gla_logo.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/google+.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/hamburger.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/help_and_support_hero.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/home_educate_hero.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/home_play_hero.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/hope_logo.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icl_logo.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_13.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_close.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_free.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_game.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_globe.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_graph.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_info.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_laptop.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_pdf.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_steps.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_video.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/icon_zip.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/kirsty.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/kirsty_hi_res.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_001.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_002.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_003.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_004.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_005.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_006.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_007.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_008.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_009.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_010.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_011.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_012.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_013.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_014.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_015.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_016.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_017.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_018.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_019.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_020.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_021.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_022.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_023.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_024.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_025.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_026.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_027.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_028.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_029.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_030.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_031.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_032.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_033.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_034.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_035.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_036.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_037.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_038.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_039.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_040.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_041.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_042.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_043.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_044.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_045.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_046.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_047.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_048.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_049.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_050.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_051.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_052.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_053.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_054.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_055.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_056.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_057.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_058.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_059.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_060.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_061.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_062.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_063.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_064.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_065.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_066.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_067.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_068.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_069.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_070.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_071.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_072.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_073.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_074.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_075.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_076.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_077.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_078.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_079.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_080.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_081.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_082.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_083.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_084.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_085.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_086.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_087.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_088.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_089.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_090.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_091.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_092.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_093.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_094.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_095.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_096.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_097.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_098.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_099.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_100.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_101.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_102.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_103.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_104.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_105.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_106.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_107.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_108.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/levels/level_109.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/logo_c4l_hexa.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/logo_c4l_horizontal.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/logo_c4l_reminder_card.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/logo_ocado.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/logout_icon.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/mc_saatchi_logo.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/medieval.svg +38 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/modern.svg +85 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/nigel.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/nigel_hi_res.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/ocado-swirl.svg +22 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/paper_plane.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/phil.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/phil_hi_res.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/play_button.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/prehistoric.svg +18 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/pressure_cooker_logo.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/rapid_router.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/rapid_router_background.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/rapid_router_landing_hero.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/resources_montage.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/sadface.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/sharon_harrison.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_080.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_081.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_082.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_083.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_084.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_085.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_086.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_087.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_088.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_089.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_090.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solutionPY_091.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_001.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_002.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_003.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_004.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_005.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_006.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_007.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_008.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_009.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_010.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_011.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_012.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_013.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_014.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_015.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_016.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_017.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_018.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_019.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_020.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_021.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_022.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_023.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_024.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_025.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_026.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_027.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_028.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_029.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_030.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_031.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_032.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_033.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_034.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_035.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_036.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_037.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_038.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_039.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_040.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_041.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_042.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_043.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_044.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_045.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_046.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_047.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_048.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_049.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_050.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_051.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_052.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_053.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_054.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_055.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_056.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_057.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_058.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_059.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_060.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_061.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_062.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_063.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_064.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_065.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_066.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_067.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_068.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_069.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_070.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_071.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_072.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_073.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_074.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_075.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_076.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_077.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_078.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_079.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_080.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_081.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_082.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_083.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_084.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_085.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_086.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_087.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_088.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_089.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_090.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_091.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_092.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_093.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_094.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_095.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_096.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_097.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_098.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_099.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_100.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_101.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_102.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_103.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_104.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_105.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_106.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_107.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_108.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/solutions/solution_109.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/stage_icon_ks1.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/stage_icon_lks2.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/stage_icon_uks2.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/step_done.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/step_in_progress.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/step_undone.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/stoneage.svg +24 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/teacher1.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/teacher2.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/teacher3.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/teacher_dashboard.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/teaching_materials.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/teaching_packs.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/teaching_resources.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/teaching_tools.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/thumbnail_intro_c4l.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/thumbnail_intro_rr.jpg +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/twitter.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/van-future.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/victorian.svg +129 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/warning.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/wes.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/wes_hi_res.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/x_close_video.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/img/your_feedback.png +0 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/bootstrap.js +2377 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/common.js +92 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/deleteWorkspaces.js +51 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/fuzzySchoolLookup.js +83 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/jquery.placeholder.js +185 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/lib/jquery-ui.js +16150 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/lib/jquery-video-lightning.js +450 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/lib/jquery.colorbox.js +1090 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/lib/jquery.easy-ticker.js +208 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/lib/jquery.js +4 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/lib/magnific.js +3 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/lib/modernizr.custom.79639.js +4 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/organisation_manage.js +79 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/passwordStrength.js +101 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/play.js +89 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/riveted.min.js +298 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/solutionSelection.js +56 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/sticky_subnav.js +58 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/student_login.js +58 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/teach_browser.js +136 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/js/teach_class.js +155 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap.scss +6757 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_mixins/_all.scss +4 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_mixins/_border-radius.scss +35 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_mixins/_box-shadow.scss +5 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_mixins/_hover.scss +59 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_mixins/_nav-divider.scss +10 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_partials/_dropdown.scss +140 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_partials/_glyphicons.scss +805 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_partials/_grid.scss +320 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_partials/_variables.scss +929 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_align.scss +6 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_background.scss +19 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_borders.scss +37 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_clearfix.scss +3 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_display.scss +53 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_flex.scss +48 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_float.scss +9 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_position.scss +23 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_screenreaders.scss +11 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_sizing.scss +10 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_spacing.scss +41 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_text.scss +61 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/bootstrap_utilities/_visibility.scss +11 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/colorbox.scss +107 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/modules/_all.scss +2 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/modules/_colours.scss +75 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/modules/_mixins.scss +89 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/old_styles.scss +1167 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_banners.scss +293 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_base.scss +1 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_buttons.scss +334 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_footer.scss +77 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_forms.scss +185 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_header.scss +152 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_images-backgrounds.scss +138 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_onboarding.scss +216 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_subnavs.scss +122 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_tables.scss +226 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_text.scss +166 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_ui-dialog.scss +45 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/partials/_utils.scss +225 -0
- codeforlife-portal-1.0.0.post.dev708/portal/static/portal/sass/styles.scss +20 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/403.html +29 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/404.html +22 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/500.html +135 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/email.html +4 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/email.txt +1 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/2FA_redirect.html +27 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/about.html +141 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/admin/aggregated_data.html +38 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/admin/map.html +70 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/base.html +290 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/base_no_userprofile.html +13 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/base_old.html +303 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/email_verification_failed.html +32 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/email_verification_needed.html +34 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/help-and-support.html +317 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/home.html +104 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/locked_out.html +14 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/login.html +135 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/mouseflow.html +9 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/play/base.html +5 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/play/student_details.html +100 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/play/student_edit_account.html +111 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/play/student_join_organisation.html +99 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/play_aimmo.html +140 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/play_rapid-router.html +110 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/register.html +116 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/reset_password_confirm.html +83 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/reset_password_done.html +27 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/reset_password_email.html +9 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/reset_password_email_sent.html +28 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/reset_password_student.html +35 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/reset_password_teach.html +34 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/base_logged_in.html +10 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/base_registering.html +75 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/class.html +157 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/dashboard.html +420 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/materials.html +294 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/onboarding_classes.html +78 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/onboarding_complete.html +89 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/onboarding_print.html +123 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/onboarding_school.html +164 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/onboarding_students.html +70 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/resource_sheets_table.html +14 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_add_external_student.html +68 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_added_external_student.html +38 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_dismiss_students.html +79 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_edit_class.html +67 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_edit_student.html +91 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_level_solutions.html +73 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_move_all_classes.html +75 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_move_class.html +49 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_move_students.html +44 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_move_students_to_class.html +81 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_resources.html +57 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_solution.html +56 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_solutionPY.html +58 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/teacher_student_reset.html +30 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach/viewer.html +70 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/teach.html +109 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/portal/terms.html +272 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/registration/login.html +50 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/two_factor/_base.html +9 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/two_factor/_wizard_actions.html +15 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/two_factor/core/setup_complete.html +14 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templates/two_factor/profile/profile.html +42 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templatetags/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templatetags/app_tags.py +127 -0
- codeforlife-portal-1.0.0.post.dev708/portal/templatetags/table_tags.py +69 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/base_test.py +85 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/base_test_migration.py +67 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/admin/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/admin/admin_base_page.py +66 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/admin/admin_data_page.py +45 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/admin/admin_login_page.py +75 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/admin/admin_map_page.py +45 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/base_page.py +129 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/email_verification_needed_page.py +49 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/forbidden_page.py +44 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/game_page.py +132 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/help_and_support_page.py +97 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/home_page.py +60 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/login_page.py +129 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/materials_page.py +49 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/password_reset_form_page.py +68 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/pdf_viewer_page.py +44 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/play/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/play/account_page.py +89 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/play/dashboard_page.py +50 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/play/join_school_or_club_page.py +67 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/play/play_base_page.py +58 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/play_page.py +44 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/resources_page.py +49 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/signup_page.py +77 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/student_password_reset_form_page.py +59 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/add_independent_student_to_class_page.py +59 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/added_independent_student_to_class_page.py +50 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/class_page.py +145 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/class_settings_page.py +84 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/dashboard_page.py +223 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/dismiss_students_page.py +60 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/edit_student_page.py +76 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/edit_student_password_page.py +49 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/move_class_page.py +63 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/move_classes_page.py +55 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/move_students_disambiguate_page.py +55 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/move_students_page.py +63 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/onboarding_classes_page.py +68 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/onboarding_organisation_page.py +113 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/onboarding_revoke_request_page.py +54 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/onboarding_student_list_page.py +54 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/onboarding_students_page.py +87 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teach/teach_base_page.py +50 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/pageObjects/portal/teacher_password_reset_form_page.py +59 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_admin.py +140 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_api.py +91 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_class.py +201 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_contact.py +97 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_emails.py +48 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_independent_student.py +330 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_location.py +224 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_materials.py +63 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_organisation.py +445 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_school_student.py +194 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_security.py +102 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_teacher.py +247 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_teacher_student.py +283 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/test_views.py +61 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/utils/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/utils/classes.py +79 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/utils/email.py +106 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/utils/messages.py +83 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/utils/organisation.py +84 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/utils/student.py +115 -0
- codeforlife-portal-1.0.0.post.dev708/portal/tests/utils/teacher.py +89 -0
- codeforlife-portal-1.0.0.post.dev708/portal/urls.py +164 -0
- codeforlife-portal-1.0.0.post.dev708/portal/utils.py +69 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/admin.py +398 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/api.py +73 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/email.py +110 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/home.py +407 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/organisation.py +254 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/play.py +166 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/registration.py +240 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/teacher/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/teacher/dashboard.py +421 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/teacher/pdfs.py +901 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/teacher/solutions_level_selector.py +132 -0
- codeforlife-portal-1.0.0.post.dev708/portal/views/teacher/teach.py +893 -0
- codeforlife-portal-1.0.0.post.dev708/portal/wsgi.py +50 -0
- codeforlife-portal-1.0.0.post.dev708/ratelimit/__init__.py +1 -0
- codeforlife-portal-1.0.0.post.dev708/ratelimit/backends/__init__.py +8 -0
- codeforlife-portal-1.0.0.post.dev708/ratelimit/backends/cache.py +44 -0
- codeforlife-portal-1.0.0.post.dev708/ratelimit/decorators.py +62 -0
- codeforlife-portal-1.0.0.post.dev708/reports/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/reports/admin.py +39 -0
- codeforlife-portal-1.0.0.post.dev708/reports/migrations/0001_initial.py +65 -0
- codeforlife-portal-1.0.0.post.dev708/reports/migrations/0002_hitsperlevelperday.py +62 -0
- codeforlife-portal-1.0.0.post.dev708/reports/migrations/__init__.py +36 -0
- codeforlife-portal-1.0.0.post.dev708/reports/models.py +54 -0
- codeforlife-portal-1.0.0.post.dev708/reports/tests.py +39 -0
- codeforlife-portal-1.0.0.post.dev708/reports/urls.py +87 -0
- codeforlife-portal-1.0.0.post.dev708/reports/views.py +39 -0
- codeforlife-portal-1.0.0.post.dev708/setup.cfg +22 -0
- codeforlife-portal-1.0.0.post.dev708/setup.py +69 -0
- codeforlife-portal-1.0.0.post.dev708/versioneer.py +1704 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 1.0
|
|
2
|
+
Name: codeforlife-portal
|
|
3
|
+
Version: 1.0.0.post.dev708
|
|
4
|
+
Summary: UNKNOWN
|
|
5
|
+
Home-page: UNKNOWN
|
|
6
|
+
Author: UNKNOWN
|
|
7
|
+
Author-email: UNKNOWN
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Description-Content-Type: UNKNOWN
|
|
10
|
+
Description: UNKNOWN
|
|
11
|
+
Platform: UNKNOWN
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
[](https://travis-ci.org/ocadotechnology/codeforlife-portal)
|
|
2
|
+
[](https://coveralls.io/github/ocadotechnology/codeforlife-portal?branch=master)
|
|
3
|
+
[](https://codeclimate.com/github/ocadotechnology/codeforlife-portal)
|
|
4
|
+
|
|
5
|
+
## A [Code for Life](https://www.codeforlife.education/) repository
|
|
6
|
+
* Ocado Technology's [Code for Life initiative](https://www.codeforlife.education/) has been developed to inspire the next generation of computer scientists and to help teachers deliver the computing curriculum.
|
|
7
|
+
* This repository hosts the source code of the **main website**: the portal for the Code For Life initiative, the registration/log in, the teachers' dashboards, the teaching materials, etc
|
|
8
|
+
* The other repos for Code For Life:
|
|
9
|
+
* the first game, [Rapid Router](https://github.com/ocadotechnology/rapid-router)
|
|
10
|
+
* the new game for teenagers, [currently at a very early stage](https://github.com/ocadotechnology/aimmo)
|
|
11
|
+
* the [deployment code for Google App Engine](https://github.com/ocadotechnology/codeforlife-deploy-appengine)
|
|
12
|
+
|
|
13
|
+
## Running Locally
|
|
14
|
+
* Clone the repo. Fork it first if you want to contribute, or make sure you work on separate branches.
|
|
15
|
+
* Install prerequisites. E.g. on Ubuntu / Linux Mint:
|
|
16
|
+
* `sudo apt-get install git`
|
|
17
|
+
* `sudo apt-get install python-dev`
|
|
18
|
+
* `sudo pip install virtualenvwrapper`
|
|
19
|
+
* `sudo apt-get install libxml2-dev libxslt1-dev zlib1g-dev`
|
|
20
|
+
* `sudo apt-get install ruby2.0` - still Ruby 1.9 hiding under `ruby` command.
|
|
21
|
+
* `sudo gem install sass -v 3.3.4` - later versions incompatible with Ruby 1.9 (see above).
|
|
22
|
+
* Make and activate a virtualenv (We recommend [virtualenvwrapper](http://virtualenvwrapper.readthedocs.org/en/latest/index.html))
|
|
23
|
+
* e.g. the first time, `mkvirtualenv -a path/to/codeforlife-portal codeforlife-portal`
|
|
24
|
+
* and thereafter `workon codeforlife-portal`
|
|
25
|
+
* create settings file under `example_project/example_project/local_settings.py` with `EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'`
|
|
26
|
+
* `./run` - This will:
|
|
27
|
+
* install all of the dependencies using pip
|
|
28
|
+
* sync the database
|
|
29
|
+
* collect the static files
|
|
30
|
+
* run the server
|
|
31
|
+
* Once you see `Quit the server with CONTROL-C`, you can open the portal in your browser at `localhost:8000`.
|
|
32
|
+
|
|
33
|
+
* If you have problems seeing the portal on machines with different locale (e.g. Polish), check the terminal for errors mentioning `ValueError: unknown locale: UTF-8`. If you see them, you need to have environment variables `LANG` and `LC_ALL` both set to `en_US.UTF-8`.
|
|
34
|
+
* Either export them in your `.bashrc` or `.bash_profile`
|
|
35
|
+
* or restart the portal with command `LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 ./run`.
|
|
36
|
+
|
|
37
|
+
## How to contribute!
|
|
38
|
+
__Guidelines__ Read the [contributing guidelines](CONTRIBUTING.md), thanks!<br>
|
|
39
|
+
One word of caution: please do not add any issues related to security. Evil hackers are everywhere nowadays... If you do find a security issue, let us know using our [contact form][c4l-contact-form].
|
|
40
|
+
|
|
41
|
+
__Want to help?__ You can contact us using this [contact form][c4l-contact-form] and we'll get in touch as soon as possible! Thanks a lot.
|
|
42
|
+
|
|
43
|
+
## Common Problems
|
|
44
|
+
### Unapplied migrations on first run
|
|
45
|
+
It may be that some migrations were changed and you have .pyc files from the old ones. Try removing all .pyc migrations by running `rm migrations/*.pyc` from the repository.
|
|
46
|
+
|
|
47
|
+
[c4l-contact-form]: https://www.codeforlife.education/help/#contact
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 1.0
|
|
2
|
+
Name: codeforlife-portal
|
|
3
|
+
Version: 1.0.0.post0.dev708
|
|
4
|
+
Summary: UNKNOWN
|
|
5
|
+
Home-page: UNKNOWN
|
|
6
|
+
Author: UNKNOWN
|
|
7
|
+
Author-email: UNKNOWN
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Description-Content-Type: UNKNOWN
|
|
10
|
+
Description: UNKNOWN
|
|
11
|
+
Platform: UNKNOWN
|