FILTERS_DISABLE_HELP_TEXT in Django Filters

FILTERS_DISABLE_HELP_TEXT:-

  • Some filters provide informational help_text. 
  • For example, csv-based filters (filters.BaseCSVFilter) inform users that “Multiple values may be    separated by commas”.
  • You can set this to True to disable the help_text for all filters by removing the text from the rendered form’s output.

Comments

Popular posts from this blog

Advantages to using URLField() over TextField()

Forms in Django(bound, unbound, clean, is_valid, errors)