From a08384321099a4ac0a1a06c70b83fc2a563715c3 Mon Sep 17 00:00:00 2001
From: OCA-git-bot
Date: Sun, 29 Mar 2020 06:07:02 +0000
Subject: [PATCH] [UPD] README.rst
---
base_m2m_custom_field/static/description/index.html | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/base_m2m_custom_field/static/description/index.html b/base_m2m_custom_field/static/description/index.html
index 5e37801b9..68eec0fad 100644
--- a/base_m2m_custom_field/static/description/index.html
+++ b/base_m2m_custom_field/static/description/index.html
@@ -397,7 +397,7 @@ is needed, for example to be editable in a dedicated tree view.
'my_model_a_b_rel',
'my_model_a_id',
'my_model_b_id',
- create_table=False,
+ create_table=False,
)
@@ -410,7 +410,7 @@ is needed, for example to be editable in a dedicated tree view.
'my_model_a_b_rel',
'my_model_b_id',
'my_model_a_id',
- create_table=False,
+ create_table=False,
)
@@ -420,13 +420,13 @@ is needed, for example to be editable in a dedicated tree view.
my_model_a_id = fields.Many2one(
'my.model.a',
- required=True,
- index=True, # Index is mandatory here
+ required=True,
+ index=True, # Index is mandatory here
)
my_model_b_id = fields.Many2one(
'my.model.b',
- required=True,
- index=True, # Index is mandatory here
+ required=True,
+ index=True, # Index is mandatory here
)
By setting create_table=False on the Many2manyCustom field, and using the