Displaying Django Messages Framework Messages

前端 未结 6 569
野趣味
野趣味 2021-01-04 07:12

I have been using the Django Messaging Framework to display messages to a user in the template.

I am outputting them to the template like this:



        
6条回答
  •  独厮守ぢ
    2021-01-04 07:58

    you can use following to check message tags.

    {% if message.tags == "error" %} your code here {% endif %}

提交回复
热议问题