Skip to content
Snippets Groups Projects
Commit 1c2dceeb authored by sandeepsajan0's avatar sandeepsajan0
Browse files

Use SingleIncludeBlock's static field name from label if exist

parent 5d063f42
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,7 @@ class FullNameBlock(ApplicationMustIncludeFieldBlock):
default=_("We will use this name when we communicate with you about your proposal."))
class Meta:
label = _('Full name')
icon = 'user'
......
......@@ -189,7 +189,7 @@ class SingleIncludeStatic(StaticBlock):
class SingleIncludeMixin:
def __init__(self, *args, **kwargs):
info_name = f'{self.name.title()} Field'
info_name = f'{self._meta_class.label} Field' if self._meta_class.label else f'{self.name.title()} Field'
child_blocks = [('info', SingleIncludeStatic(label=info_name, description=self.description))]
super().__init__(child_blocks, *args, **kwargs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment