-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathversions.php
More file actions
48 lines (36 loc) · 1.15 KB
/
versions.php
File metadata and controls
48 lines (36 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php include("top.php");?>
<?php include("nav.php");?>
<h1>Django for Everybody Versions</h1>
<p>As time passes and Django releases new versions, this course
needs to be updated. Very little changes from one version of Django
to the next so if this course is not using the *latest* version of
Django it is usually no problem. You may see demonstration videos
with older versions of Django that work with a later version of Django.
</p>
<p>
<a href="https://docs.djangoproject.com/en/5.2/releases/" target="_blank" rel="noopener noreferrer" aria-label="Django releases documentation, opens in new window">Django Releases</a></p>
<h2>Current Version of this Course</h2>
<pre aria-label="Current version release notes">
June 2025
Django 5.2
Switch from Ads assignments to Marketplace assignments
Introduce Web Components using LitElement.
</pre>
<h2>Previous Versions of this Course</h2>
<pre aria-label="Previous version release notes">
September 2023
Django 4.2
Bootstrap 5.0
jQuery removed
September 2022
Django 4.0
Bootstrap 3.4.1
jQuery 3.3.1
September 2021
Django 3.2
Bootstrap 3.4.0
jQuery 3.3.1
January 2020
Django 3.0.1
</pre>
<?php include("footer.php"); ?>