Skip to content

Commit

Permalink
Merge 42b748c into 3c40337
Browse files Browse the repository at this point in the history
  • Loading branch information
barahona-gallardo committed Dec 21, 2023
2 parents 3c40337 + 42b748c commit 8029da3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion djangoproject/templates/releases/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ <h2>Option {% cycle '1' '2' '3' as options %}: Get the latest official version</
<p>The latest official version is {{ current.version }}{% if current.is_lts %} (LTS){% endif %}. Read the
{% release_notes current.version show_version=True %}, then install it with
<a href="https://pip.pypa.io/en/latest/">pip</a>:</p>
<pre class="literal-block"><code>pip install Django=={{ current.version }}</code></pre>
<p>Linux / MacOs:</p>
<pre class="literal-block"><code>python -m pip install Django=={{ current.version }}</code></pre>
<p>Windows:</p>
<pre class="literal-block"><code>py -m pip install Django=={{ current.version }}</code></pre>

{% if preview %}
{% with preview.version|slice:":3" as major_version %}
Expand Down

0 comments on commit 8029da3

Please sign in to comment.