Commit 59b3daa6 authored by Christian Wygoda's avatar Christian Wygoda

Add missing meta for InlineFieldList

parent ccc730e8
...@@ -15,7 +15,7 @@ class InlineFieldList(FieldList): ...@@ -15,7 +15,7 @@ class InlineFieldList(FieldList):
def __call__(self, **kwargs): def __call__(self, **kwargs):
# Create template # Create template
template = self.unbound_field.bind(form=None, name='') template = self.unbound_field.bind(form=None, name='', _meta=self.meta)
# Small hack to remove separator from FormField # Small hack to remove separator from FormField
if isinstance(template, FormField): if isinstance(template, FormField):
template.separator = '' template.separator = ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment