diff --git a/base_view_inheritance_extension/README.rst b/base_view_inheritance_extension/README.rst
index fd60e7863..063de0996 100644
--- a/base_view_inheritance_extension/README.rst
+++ b/base_view_inheritance_extension/README.rst
@@ -50,30 +50,21 @@ to refer to some xmlid, say ``%(xmlid)s``.
**Add to values in a list (states for example)**
-.. code-block:: xml
-
-
- $new_value(s)
-
+Deprecated. This feature is now native, use ``.
**Remove values from a list (states for example)**
-.. code-block:: xml
-
-
- $remove_value(s)
-
+Deprecated. This feature is now native, use ``.
**Move an element in the view**
-This feature is now native, cf the `official Odoo documentation `_.
+This feature is now native, cf the `official Odoo documentation `_.
Known issues / Roadmap
======================
-* add ``$value``
-* support ````
-* support an ``eval`` attribute for our new node types
+* On `15.0`, remove `list_add` and `list_remove` fetures.
+* Support an ``eval`` attribute for our new node types.
Bug Tracker
===========
@@ -99,6 +90,7 @@ Contributors
* Holger Brunn
* Ronald Portier
* Sergio Teruel
+* Iván Todorovich
Maintainers
~~~~~~~~~~~
diff --git a/base_view_inheritance_extension/static/description/index.html b/base_view_inheritance_extension/static/description/index.html
index aa6ab1043..ef4362660 100644
--- a/base_view_inheritance_extension/static/description/index.html
+++ b/base_view_inheritance_extension/static/description/index.html
@@ -395,26 +395,17 @@ inheritance.
Note that views are subject to evaluation of xmlids anyways, so if you need
to refer to some xmlid, say %(xmlid)s.
Add to values in a list (states for example)
-
-<attribute name="$attribute" operation="list_add">
- $new_value(s)
-</attribute>
-
+Deprecated. This feature is now native, use <attribute name=”attrname” separator=”,” add=”something” />.
Remove values from a list (states for example)
-
-<attribute name="$attribute" operation="list_remove">
- $remove_value(s)
-</attribute>
-
+Deprecated. This feature is now native, use <attribute name=”attrname” separator=”,” remove=”something” />.
Move an element in the view
-This feature is now native, cf the official Odoo documentation.
+This feature is now native, cf the official Odoo documentation.
-- add <attribute operation="json_dict" key="$key">$value</attribute>
-- support <xpath expr="$xpath" position="move" target="xpath" target_position="position" />
-- support an eval attribute for our new node types
+- On 15.0, remove list_add and list_remove fetures.
+- Support an eval attribute for our new node types.