Commit 3b8d2ca8 by Collin Stedman

Update installation.rst

parent aecd8b8d
...@@ -39,16 +39,18 @@ Upgrading to 1.4 ...@@ -39,16 +39,18 @@ Upgrading to 1.4
To upgrade to pipeline 1.4, you will need to follow theses steps: To upgrade to pipeline 1.4, you will need to follow theses steps:
1. Rewrite all templates like follow 1. Update templates to use the new syntax
.. code-block:: python .. code-block:: python
{# pipeline<1.4 #}
{% load compressed %} {% load compressed %}
{% compressed_js 'group' %} {% compressed_js 'group' %}
{% compressed_css 'group' %} {% compressed_css 'group' %}
.. code-block:: python .. code-block:: python
{# pipeline=1.4 #}
{% load pipeline %} {% load pipeline %}
{% javascript 'group' %} {% javascript 'group' %}
{% stylesheet 'group' %} {% stylesheet 'group' %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment