Improve linking app column display and sorting

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-04-28 02:22:21 -04:00
parent ae8a444e42
commit a544924c08
3 changed files with 20 additions and 3 deletions

View File

@@ -202,8 +202,14 @@ class SmartLinkCondition(models.Model):
verbose_name_plural = _('Link conditions')
def __str__(self):
return self.get_full_label()
def get_full_label(self):
return '%s foreign %s %s %s %s' % (
self.get_inclusion_display(),
self.foreign_document_data, _('not') if self.negated else '',
self.get_operator_display(), self.expression
)
get_full_label.short_description = _('Full label')