2017-05-21 6 views
1

私のdjango管理者では、エラーメッセージ(メッセージフレームワークを使用)はdangerクラスで作成されています。しかし、メッセージはそれ以上の承認印と緑になります。admin/css/base.cssに見てみるとエラークラスがerrorないdangerあるようDjangoの管理者は "危険"クラスのブートストラップで失敗しますか?

enter image description here

、それが見えます。

なぜdangerと表示されますか?どうすれば変更できますか?

答えて

3

という危険度のメッセージレベルはありませんです。あなたが使用できることはwarningerrorのいずれかである:

https://docs.djangoproject.com/en/1.11/ref/contrib/messages/#message-levels

DEBUG Development-related messages that will be ignored (or removed) 
     in a production deployment 
INFO Informational messages for the user 
SUCCESS An action was successful, e.g. “Your profile was updated successfully” 
WARNING A failure did not occur but may be imminent 
ERROR An action was not successful or some other failure occurred 
+1

申し訳ありません。ありがとうございました。ブートストラップの「危険」と混ざった。 – iTayb

関連する問題