[doc] always indicate the file in which the code should be put 3.26
authorLaurent Peuch <cortex@worlddomination.be>
Tue, 12 Feb 2019 14:59:13 +0100
branch3.26
changeset 12441 e09daf8b1cd4
parent 12440 0b174850d21d
child 12442 5f4c835c11e1
[doc] always indicate the file in which the code should be put
doc/tutorials/base/customizing-the-application.rst
--- a/doc/tutorials/base/customizing-the-application.rst	Tue Feb 12 14:58:50 2019 +0100
+++ b/doc/tutorials/base/customizing-the-application.rst	Tue Feb 12 14:59:13 2019 +0100
@@ -308,7 +308,7 @@
 details in :ref:`primary_view`).
 
 
-So... Some code! That we'll put again in the module ``views`` of our cube.
+So... Some code! That we'll put again in the module ``views`` (``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...
+method, etc... To do so, write this code in ``myblog/entities.py``:
 
 .. sourcecode:: python
 
@@ -519,6 +519,8 @@
 custom rendering but also extension points provided by the default
 implementation.
 
+In ``myblog/views.py``:
+
 
 .. sourcecode:: python