codeforlife-portal 7.3.4__py2.py3-none-any.whl → 7.3.6__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of codeforlife-portal might be problematic. Click here for more details.
- cfl_common/common/migrations/0055_alter_schoolteacherinvitation_token.py +18 -0
- cfl_common/common/models.py +1 -1
- {codeforlife_portal-7.3.4.dist-info → codeforlife_portal-7.3.6.dist-info}/METADATA +2 -2
- {codeforlife_portal-7.3.4.dist-info → codeforlife_portal-7.3.6.dist-info}/RECORD +12 -11
- portal/__init__.py +1 -1
- portal/templates/portal/about.html +9 -8
- portal/templates/portal/email_style_template.html +1 -1
- portal/templates/portal/partials/footer.html +2 -2
- portal/templates/portal/partials/header.html +1 -1
- {codeforlife_portal-7.3.4.dist-info → codeforlife_portal-7.3.6.dist-info}/LICENSE.md +0 -0
- {codeforlife_portal-7.3.4.dist-info → codeforlife_portal-7.3.6.dist-info}/WHEEL +0 -0
- {codeforlife_portal-7.3.4.dist-info → codeforlife_portal-7.3.6.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Generated by Django 3.2.25 on 2024-09-27 16:04
|
|
2
|
+
|
|
3
|
+
from django.db import migrations, models
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Migration(migrations.Migration):
|
|
7
|
+
|
|
8
|
+
dependencies = [
|
|
9
|
+
('common', '0054_delete_aimmo_models'),
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
operations = [
|
|
13
|
+
migrations.AlterField(
|
|
14
|
+
model_name='schoolteacherinvitation',
|
|
15
|
+
name='token',
|
|
16
|
+
field=models.CharField(max_length=88),
|
|
17
|
+
),
|
|
18
|
+
]
|
cfl_common/common/models.py
CHANGED
|
@@ -152,7 +152,7 @@ class SchoolTeacherInvitationModelManager(models.Manager):
|
|
|
152
152
|
|
|
153
153
|
|
|
154
154
|
class SchoolTeacherInvitation(models.Model):
|
|
155
|
-
token = models.CharField(max_length=
|
|
155
|
+
token = models.CharField(max_length=88)
|
|
156
156
|
school = models.ForeignKey(
|
|
157
157
|
School,
|
|
158
158
|
related_name="teacher_invitations",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: codeforlife-portal
|
|
3
|
-
Version: 7.3.
|
|
3
|
+
Version: 7.3.6
|
|
4
4
|
Classifier: Programming Language :: Python
|
|
5
5
|
Classifier: Programming Language :: Python :: 3.12
|
|
6
6
|
Classifier: Framework :: Django
|
|
@@ -21,7 +21,7 @@ Requires-Dist: django-classy-tags==2.0.0
|
|
|
21
21
|
Requires-Dist: libsass==0.23.0
|
|
22
22
|
Requires-Dist: phonenumbers==8.12.12
|
|
23
23
|
Requires-Dist: more-itertools==8.7.0
|
|
24
|
-
Requires-Dist: cfl-common==7.3.
|
|
24
|
+
Requires-Dist: cfl-common==7.3.6
|
|
25
25
|
Requires-Dist: django-ratelimit==3.0.1
|
|
26
26
|
Requires-Dist: django-preventconcurrentlogins==0.8.2
|
|
27
27
|
Requires-Dist: django-csp==3.7
|
|
@@ -6,7 +6,7 @@ cfl_common/common/apps.py,sha256=49UXZ3bSkFKvIEOL4zM7y1sAhccQJyRtsoOg5XVd_8Y,129
|
|
|
6
6
|
cfl_common/common/context_processors.py,sha256=X0iuX5qu9kMWa7q8osE9CJ2LgM7pPOYQFGdjm8X3rk0,236
|
|
7
7
|
cfl_common/common/csp_config.py,sha256=9ECOLnp60ENRFAYEEIoYOMhqQzLgfKA-wkWxeUBwDrQ,2824
|
|
8
8
|
cfl_common/common/mail.py,sha256=nCY5aRiyiBCudonewpHOQ3GnXhQu4HLJRaqx1vOYhfI,6799
|
|
9
|
-
cfl_common/common/models.py,sha256=
|
|
9
|
+
cfl_common/common/models.py,sha256=yAULJtzuF4loEt6mPrgZjwHGiQH6Hqm82etE7Sofvys,15989
|
|
10
10
|
cfl_common/common/permissions.py,sha256=gC6RQGZI2QDBbglx-xr_V4Hl2C2nf1V2_uPmEuoEcJo,2416
|
|
11
11
|
cfl_common/common/utils.py,sha256=Nn2Npao9Uqad5Js_IdHwF-ow6wrPNpBLW4AO1LxoEBc,1727
|
|
12
12
|
cfl_common/common/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -68,6 +68,7 @@ cfl_common/common/migrations/0051_verify_returning_users.py,sha256=WMpoTA24WgimL
|
|
|
68
68
|
cfl_common/common/migrations/0052_add_cse_fields.py,sha256=NhUkkcu2EBzJFhewCTccQ63AoANkGq1CXbFWIGJG9jk,2232
|
|
69
69
|
cfl_common/common/migrations/0053_clean_class_data.py,sha256=lBKlDa49YwT660o-Ot6IYe4I1KfervTn4uAijda0nyw,584
|
|
70
70
|
cfl_common/common/migrations/0054_delete_aimmo_models.py,sha256=fmn4mDdlHr5DhPbIl_ygvGwWVFD8TZHAgQ6VUQQgCx8,415
|
|
71
|
+
cfl_common/common/migrations/0055_alter_schoolteacherinvitation_token.py,sha256=lzPAMaI3zU_q25RuIos_LV97NXOa3MIn_eWaEL71Y4I,403
|
|
71
72
|
cfl_common/common/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
73
|
cfl_common/common/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
74
|
cfl_common/common/tests/test_migration_anonymise_orphan_schools.py,sha256=wJRyPgRvBsXLSCFdbBi2GXjgSgDbKUTRiM31CXIvpqs,1194
|
|
@@ -107,7 +108,7 @@ example_project/portal_test_settings.py,sha256=NfLY72mt1LR2c0_kxF-Yg5pCm2vQ52ece
|
|
|
107
108
|
example_project/settings.py,sha256=Smpr5FHAaQQhXPgh6-Zsy-jnH5_ZV9htPTWJWlGqptI,5575
|
|
108
109
|
example_project/urls.py,sha256=3SsP5jvPAXV5xmduka4zbSZB5PbXggjsalu1ojY5KIo,434
|
|
109
110
|
example_project/wsgi.py,sha256=U1W6WzZxZaIdYZ5tks7w9fqp5WS5qvn2iThsVcskrWw,829
|
|
110
|
-
portal/__init__.py,sha256=
|
|
111
|
+
portal/__init__.py,sha256=ZsMhJqnIOQKtmOKX41ubrMNGyCdjCp-Y35rdkDD09aE,22
|
|
111
112
|
portal/admin.py,sha256=on1-zNRnZvf2cwBN6GVRVYRhkaksrCgfzX8XPWtkvz8,6062
|
|
112
113
|
portal/app_settings.py,sha256=DhWLQOwM0zVOXE3O5TNKbMM9K6agfLuCsHOdr1J7xEI,651
|
|
113
114
|
portal/backends.py,sha256=2Dss6_WoQwPuDzJUF1yEaTQTNG4eUrD12ujJQ5cp5Tc,812
|
|
@@ -432,14 +433,14 @@ portal/templates/email.html,sha256=MXB64zc1Sd34eIq8mGT1HhrjAiZUNvRx0_XjZllfKUU,2
|
|
|
432
433
|
portal/templates/email.txt,sha256=z3bkT2WnkCrVa1RLVbGd-pE81cLEHlZ_QowfbSQAOvg,19
|
|
433
434
|
portal/templates/captcha/widget_v2_invisible.html,sha256=wPBAvvjm-qhSCrQruwJ2SSBkxFg4oUNFl26Axs1IjZw,306
|
|
434
435
|
portal/templates/captcha/includes/js_v2_invisible.html,sha256=FUyDf1RDyS7whzW2B_TnD1ovS8an9sDavCJFqAsrnmQ,1409
|
|
435
|
-
portal/templates/portal/about.html,sha256=
|
|
436
|
+
portal/templates/portal/about.html,sha256=IYVHrc2lxjQnNjFFSY6jR6ViEdm5aqgmU4j_m8xXZ0w,10320
|
|
436
437
|
portal/templates/portal/base.html,sha256=DhZ1BC9AANRofocQeNtU6wSFMI-5WmQ-4eXemUGAuQo,11689
|
|
437
438
|
portal/templates/portal/base_no_userprofile.html,sha256=PlRufyYmUUGWBZ6CvbYhJWOMTqKqdcee4xnO5--AogA,447
|
|
438
439
|
portal/templates/portal/coding_club.html,sha256=aaLx9UQ8p_7Vvy3Vlh1rOufeNN0KhJ6fj4oqI6QqJcM,4518
|
|
439
440
|
portal/templates/portal/contribute.html,sha256=UIC_N3Lun9wB_6jEra0wvlT9fDiiIeMby7_onXYo6k0,4176
|
|
440
441
|
portal/templates/portal/dotmailer_consent_form.html,sha256=UDdizPoKYZGybr6z9nzDV4WPhJPa-S3bIKywvVgFrxg,918
|
|
441
442
|
portal/templates/portal/email_invitation_sent.html,sha256=hAMzQXE3NFGnOsQlCGuo3Aps-vazSJb5BhAN7bWT48M,641
|
|
442
|
-
portal/templates/portal/email_style_template.html,sha256=
|
|
443
|
+
portal/templates/portal/email_style_template.html,sha256=lIlpiEC7-mO9tx3Ra9jtBjdXYxh5HKGZU8uqbvKdEbk,11893
|
|
443
444
|
portal/templates/portal/email_verification_failed.html,sha256=i93oA6EXxa-Tj6A05Bk6ftR0h0A4M_oTjNqqyCJ4c8g,806
|
|
444
445
|
portal/templates/portal/email_verification_needed.html,sha256=lJvwWjBg6y-9V17gyVCIQj1sXzB6O35porHGhrLT6WM,1053
|
|
445
446
|
portal/templates/portal/form_shapes.html,sha256=oiaQ4RKZF8STTQsoQqql184UoYVyFQ60Mwve8lJMKu0,1223
|
|
@@ -468,8 +469,8 @@ portal/templates/portal/partials/benefits.html,sha256=TZm4U_XimgivkPMjDXxxkV7PLf
|
|
|
468
469
|
portal/templates/portal/partials/card_list.html,sha256=yHcp4oc0WRG9H6Ek871VCHbwYkDRcwQYbZ320gtsFn8,1550
|
|
469
470
|
portal/templates/portal/partials/character_list.html,sha256=SnNFHzbIkOSaiRPIvSdplEf_B87UYgJ1pOvMltNDxLE,415
|
|
470
471
|
portal/templates/portal/partials/delete_popup.html,sha256=nEhnwgnmKoFzb6LlCwdX973Em9bVOFh6MON36RPteYs,1275
|
|
471
|
-
portal/templates/portal/partials/footer.html,sha256=
|
|
472
|
-
portal/templates/portal/partials/header.html,sha256=
|
|
472
|
+
portal/templates/portal/partials/footer.html,sha256=m0mKlUenQN4pVCNi8Dkzer5aQ4uUmvfLjyzTMWoBiQ4,4838
|
|
473
|
+
portal/templates/portal/partials/header.html,sha256=rfat08RRW0GNhWq074IBR7KZlCV8-EMjKFtZFb97qBk,20100
|
|
473
474
|
portal/templates/portal/partials/headline.html,sha256=xKb-WtkT0FyQqT0smyNSKkXFvU7KQ5Czad8ca6YKQg4,89
|
|
474
475
|
portal/templates/portal/partials/hero_card.html,sha256=UN5hyxrw-McuXFsDzPBIECB9yGrv9VjsFf8SEBowwXc,786
|
|
475
476
|
portal/templates/portal/partials/info_popup.html,sha256=gzffd5MBVb7p2hGQuZMNDudThrRgs847hCu9ziT9uLE,566
|
|
@@ -631,8 +632,8 @@ portal/views/two_factor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
631
632
|
portal/views/two_factor/core.py,sha256=O_wcBeFqdPYSGNGv-pT_vbs5-Dj1Z-Jfkd6f9-E5yZI,760
|
|
632
633
|
portal/views/two_factor/form.py,sha256=lnHNKI-BMlpncTuW3zUzjPaJJNuEra2I_nOam0eOKFY,257
|
|
633
634
|
portal/views/two_factor/profile.py,sha256=tkl_ludo8arMtd5LKNmohM66vpC_YQiP-0nspTSJiJ4,383
|
|
634
|
-
codeforlife_portal-7.3.
|
|
635
|
-
codeforlife_portal-7.3.
|
|
636
|
-
codeforlife_portal-7.3.
|
|
637
|
-
codeforlife_portal-7.3.
|
|
638
|
-
codeforlife_portal-7.3.
|
|
635
|
+
codeforlife_portal-7.3.6.dist-info/LICENSE.md,sha256=9AbRlCDqD2D1tPibimysFv3zg3AIc49-eyv9aEsyq9w,115
|
|
636
|
+
codeforlife_portal-7.3.6.dist-info/METADATA,sha256=4sDnip4PI--9-Yu11gff3guibazvPdv51qDk7e0Hi7c,3317
|
|
637
|
+
codeforlife_portal-7.3.6.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
|
638
|
+
codeforlife_portal-7.3.6.dist-info/top_level.txt,sha256=8e5pdsuIoTqEAMqpelHBjGjLbffcBtgOoggmd2q7nMw,41
|
|
639
|
+
codeforlife_portal-7.3.6.dist-info/RECORD,,
|
portal/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "7.3.
|
|
1
|
+
__version__ = "7.3.6"
|
|
@@ -74,13 +74,14 @@
|
|
|
74
74
|
profitably, sustainably, and in a scalable manner.</p>
|
|
75
75
|
<p>The Ocado Smart Platform (OSP) is the world's most advanced
|
|
76
76
|
end-to-end e-Commerce, fulfilment and logistic platform.</p>
|
|
77
|
-
<p><a target="_blank" href="https://www.ocadogroup.com/
|
|
78
|
-
Skills for the Future</a> is one of Ocado Group's
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
77
|
+
<p><a target="_blank" href="https://www.ocadogroup.com/sustainability/sustainability">
|
|
78
|
+
Our People and Skills for the Future</a> is one of Ocado Group's
|
|
79
|
+
core Sustainability pillars alongside Environment and Natural
|
|
80
|
+
Resources and Platform Resilience and Innovation). For Ocado
|
|
81
|
+
Group, Our People and Skills for the Future means accelerating
|
|
82
|
+
the development of our people and championing digital literacy.
|
|
83
|
+
We want to inspire the next generation of STEM leaders, so that
|
|
84
|
+
everyone can fully participate in society.</p>
|
|
84
85
|
</div>
|
|
85
86
|
</div>
|
|
86
87
|
</div>
|
|
@@ -139,7 +140,7 @@
|
|
|
139
140
|
</div>
|
|
140
141
|
<div class="col-sm-6">
|
|
141
142
|
<h5>Developers</h5>
|
|
142
|
-
<p>To contribute, head over to<a target="_blank" href="https://github.com/ocadotechnology/codeforlife-portal">GitHub</a>,
|
|
143
|
+
<p>To contribute, head over to <a target="_blank" href="https://github.com/ocadotechnology/codeforlife-portal">GitHub</a>,
|
|
143
144
|
check out the issue tracker, and get started. There you can
|
|
144
145
|
suggest new features or assign yourself an issue to develop. You
|
|
145
146
|
can find more info about how to do all these on our
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
<tbody>
|
|
285
285
|
<tr>
|
|
286
286
|
<td class="element-pad element-bord" align="right">
|
|
287
|
-
<a href="https://www.ocadogroup.com/
|
|
287
|
+
<a href="https://www.ocadogroup.com/sustainability/sustainability">
|
|
288
288
|
<img src="{{ url_prefix }}/static/portal/img/logo_ocado_group.png" width="122" style="min-height: auto;" alt="logo_ocado_group">
|
|
289
289
|
</a>
|
|
290
290
|
</td>
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
</div>
|
|
26
26
|
</div>
|
|
27
27
|
<div class="col-sm-4 hidden-xs">
|
|
28
|
-
<a target="_blank" href="https://www.ocadogroup.com/
|
|
28
|
+
<a target="_blank" href="https://www.ocadogroup.com/sustainability/sustainability">
|
|
29
29
|
<img title="Ocado Group" alt="Ocado Group" src="{% static 'portal/img/logo_cfl_powered.svg' %}">
|
|
30
30
|
</a>
|
|
31
31
|
</div>
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
<a target="_blank" href="https://www.youtube.com/@CodeForLife-uk"><span class="iconify" data-icon="simple-icons:youtube"></span></a>
|
|
65
65
|
</div>
|
|
66
66
|
<div class="visible-xs">
|
|
67
|
-
<a target="_blank" href="https://www.ocadogroup.com/
|
|
67
|
+
<a target="_blank" href="https://www.ocadogroup.com/sustainability/sustainability">
|
|
68
68
|
<img title="Ocado Group" alt="Ocado Group" src="{% static 'portal/img/logo_cfl_powered.svg' %}">
|
|
69
69
|
</a>
|
|
70
70
|
</div>
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
{% endif %}
|
|
18
18
|
<img class="logo" src="{% static 'portal/img/logo_cfl.png' %}" alt="Code for Life logo">
|
|
19
19
|
</a>
|
|
20
|
-
<a class="menu__brand--ocado" target="_blank" href="https://www.ocadogroup.com/
|
|
20
|
+
<a class="menu__brand--ocado" target="_blank" href="https://www.ocadogroup.com/sustainability/sustainability">
|
|
21
21
|
<img title="Proudly developed by Ocado Group" alt="Ocado Group logo"
|
|
22
22
|
src="{% static 'portal/img/logo_ocado_group.svg' %}">
|
|
23
23
|
</a>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|