Every line of 'messages in django' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
44 @register.filter() 45 def messages(obj): 46 """ 47 Messages to be displayed to the current session. 48 """ 49 if isinstance(obj, BaseForm): 50 return obj.non_field_errors() 51 return get_messages(obj)