--- a/doc/tutorials/base/customizing-the-application.rst Thu Feb 21 18:49:24 2019 +0100
+++ b/doc/tutorials/base/customizing-the-application.rst Thu Feb 21 18:51:36 2019 +0100
@@ -308,7 +308,7 @@
details in :ref:`primary_view`).
-So... Some code! That we'll put again in the module ``views`` (``myblog/views.py``) of our cube.
+So... Some code! That we'll put again in the module ``views`` (:file:`myblog/views.py`) of our cube.
.. sourcecode:: python
@@ -383,7 +383,7 @@
- defines a :attr:`__regid__` linked to the corresponding data type of your schema
You may then want to add your own methods, override default implementation of some
-method, etc... To do so, write this code in ``myblog/entities.py``:
+method, etc... To do so, write this code in :file:`myblog/entities.py`:
.. sourcecode:: python
@@ -519,7 +519,7 @@
custom rendering but also extension points provided by the default
implementation.
-In ``myblog/views.py``:
+In :file:`myblog/views.py`:
.. sourcecode:: python