예제 #1
0
 def process_response(self, request, response):
     # Check for messages for this user and, if it exists,
     # call the messages API with it
     if hasattr(request, "session") and request.user.is_authenticated():
         msgs = get_messages(request.user)
         if msgs:
             for msg, level in msgs:
                 messages.add_message(request, level, msg)
     return response
예제 #2
0
 def process_response(self, request, response):
     # Check for messages for this user and, if it exists,
     # call the messages API with it
    if hasattr(request, "session") and request.user.is_authenticated():
         msgs = get_messages(request.user)
         if msgs:
             for msg, level in msgs:
                 messages.add_message(request, level, msg)
    return response
 def process_response(self, request, response):
     """
     Check for messages for this user and, if it exists,
     call the messages API with it
     """
     if self.is_authenticated(request):
         msgs = get_messages(request.user)
         if msgs:
             for msg, level in msgs:
                 messages.add_message(request, level, msg)
     return response