Adding css class to field on validation error in django

前端 未结 5 1163
谎友^
谎友^ 2021-01-01 18:40

I am using Django\'s modelform and its really good. How can I highlight the actual text box (e.g. border:red ) if there is a validation error associated with it. Basically

5条回答
  •  温柔的废话
    2021-01-01 19:36

    Expanding upon errx's answer.

    Add the CSS

    .error input, .error select {
        border: 2px red solid;
    }
    

    to specifically highlight the field

提交回复
热议问题