-
Notifications
You must be signed in to change notification settings - Fork 55
/
versions.php
44 lines (34 loc) · 883 Bytes
/
versions.php
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
<?php include("top.php");?>
<?php include("nav.php");?>
<h1>Django for Everybody Versions</h1>
<p>As time passes and Django releases new vesions, 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.0/releases/" target="_blank">
Django Releases
</a></p>
<h2>Current Version of this Course</h2>
<pre>
September 2023
Django 4.2
Bootstrap 5.0
jQuery removed
</pre>
<h2>Previous Versions of this Course</h2>
<pre>
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"); ?>