DEV Community

vaibhav bisht
vaibhav bisht

Posted on

Serializing custom models in django-rest-framework ()

Hii i am new to django rest framework. I want to create a registration form I have already created my models.py. In the models.py I didn't added the confirm_password field (as the tutorial I watched on youtube said). But I add the confirm_password field in serializers.py

Serializers.py

class account_data_serializer(serializers.ModelSerializer)
    confirm_password

Top comments (0)