Skip to content

Commit

Permalink
Merge pull request #557 from alexhayes/dev
Browse files Browse the repository at this point in the history
Added help_text to MultiField
  • Loading branch information
Carlton Gibson committed Feb 22, 2017
2 parents 39212e2 + 0762f9a commit 23e4c63
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crispy_forms/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ def __init__(self, label, *fields, **kwargs):
self.label_class = kwargs.pop('label_class', 'blockLabel')
self.css_class = kwargs.pop('css_class', 'ctrlHolder')
self.css_id = kwargs.pop('css_id', None)
self.help_text = kwargs.pop('help_text', None)
self.template = kwargs.pop('template', self.template)
self.field_template = kwargs.pop('field_template', self.field_template)
self.flat_attrs = flatatt(kwargs)
Expand Down

0 comments on commit 23e4c63

Please sign in to comment.