Custom validation in Django admin

后端 未结 3 1799
北恋
北恋 2021-02-01 13:21

I have a very simple Django app in order to record the lectures given my colleagues.Since it is quite elementary,I am using the Django admin itself. Here is my models.py:

<
3条回答
  •  情深已故
    2021-02-01 13:38

    You have an indentation issue. Your clean method is indented within the form's Meta class. Move it back one level. Also, ensure that the return statement is indented within the method.

提交回复
热议问题