summaryrefslogtreecommitdiff
path: root/ishtar_common/models_rest.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/models_rest.py')
-rw-r--r--ishtar_common/models_rest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ishtar_common/models_rest.py b/ishtar_common/models_rest.py
index 7a6c79a54..5737ec368 100644
--- a/ishtar_common/models_rest.py
+++ b/ishtar_common/models_rest.py
@@ -67,12 +67,12 @@ class ApiSearchModel(models.Model):
)
table_format = models.ForeignKey(
"ishtar_common.ImporterType", on_delete=models.PROTECT, null=True,
- verbose_name=_("Table formats"), related_name=_("search_model_table_format"),
- help_text=_("Not used. Set it when table columns will be set by importer.")
+ verbose_name=_("Table formats"), related_name="search_model_table_format",
+ help_text="Not used. Set it when table columns will be set by importer."
)
export = models.ManyToManyField(
"ishtar_common.ImporterType", blank=True, verbose_name=_("Export"),
- related_name=_("search_model_exports"))
+ related_name="search_model_exports")
class Meta:
verbose_name = _("API - Remote access - Search model")