diff options
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index da05955ce..f39cdabe8 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1226,16 +1226,16 @@ class RelationItem(models.Model): _("Generated above relation image (PNG)"), null=True, blank=True, upload_to=get_image_path, help_text=max_size_help() ) - relation_image_bellow = models.FileField( - _("Generated bellow relation image (SVG)"), null=True, blank=True, + relation_image_below = models.FileField( + _("Generated below relation image (SVG)"), null=True, blank=True, upload_to=get_image_path, help_text=max_size_help() ) - relation_dot_bellow = models.FileField( - _("Generated bellow relation image (DOT)"), null=True, blank=True, + relation_dot_below = models.FileField( + _("Generated below relation image (DOT)"), null=True, blank=True, upload_to=get_image_path, help_text=max_size_help() ) - relation_bitmap_image_bellow = models.FileField( - _("Generated bellow relation image (PNG)"), null=True, blank=True, + relation_bitmap_image_below = models.FileField( + _("Generated below relation image (PNG)"), null=True, blank=True, upload_to=get_image_path, help_text=max_size_help() ) @@ -1244,10 +1244,10 @@ class RelationItem(models.Model): def generate_relation_image( self, highlight_current=True, render_above=True, - render_bellow=True, full=False): + render_below=True, full=False): generate_relation_graph(self, highlight_current=highlight_current, render_above=render_above, - render_bellow=render_bellow, full=full) + render_below=render_below, full=full) class JsonDataSection(models.Model): @@ -2285,7 +2285,7 @@ class BaseHistorizedItem(StatisticItem, TemplateItem, FullSearch, Imported, LOGICAL_TYPES = ( ('above', _("Above")), - ('bellow', _("Bellow")), + ('below', _("Below")), ('equal', _("Equal")) ) |