Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 571887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T13:33:17+00:00 2026-05-13T13:33:17+00:00

Am I thinking about this all wrong , or am I missing something that’s

  • 0

Am I thinking about this all wrong, or am I missing something that’s really obvious?

Python’s style guide say’s less code is better (and I don’t think that’s subjective… It’s a fact), so consider this.

To use forms for all validation means that to write a model field subclass with custom validation, you’d have to:

  1. Subclass models.Field
  2. Subclass forms.Field
  3. Add custom validation to your forms.Field subclass
  4. Set your custom form field as the default form field for the custom model field
  5. Always use a django model form if you want to perform validation

With all validation in the model you’d just have to:

  1. Subclass models.Field
  2. Add custom validation to your models.Field subclass

Now you could use your model field in an API that bypasses all use of web forms, and you’d still have validation at lowest level. If you used web forms, the validation would propagate upwards.

Is there a way to do this without having to write the Django team and wait for them to fix this error?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T13:33:18+00:00Added an answer on May 13, 2026 at 1:33 pm

    This sort of thing is already possible in Django’s development version:

    There are three steps in validating a
    model, and all three are called by a
    model’s full_clean() method. Most of
    the time, this method will be called
    automatically by a ModelForm. You should only need to
    call full_clean() if you plan to
    handle validation errors yourself.

    See the docs.

    e.g. (as part of your model class):

    def clean(self):
        from django.core.exceptions import ValidationError
        # Don't allow draft entries to have a pub_date.
        if self.status == 'draft' and self.pub_date is not None:
            raise ValidationError('Draft entries may not have a publication date.')
        # Set the pub_date for published items if it hasn't been set already.
        if self.status == 'published' and self.pub_date is None:
            self.pub_date = datetime.datetime.now()
    

    The ModelForm‘s validation process will call into your model’s clean method, per this:

    As part of its validation process,
    ModelForm will call the clean() method
    of each field on your model that has a
    corresponding field on your form. If
    you have excluded any model fields,
    validation will not be run on those
    fields. Also,
    your model’s clean() method will be
    called before any uniqueness checks
    are made. See Validating objects for
    more information on the model’s
    clean() hook.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 313k
  • Answers 313k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I think since full text search use some specific indexes… May 13, 2026 at 10:49 pm
  • Editorial Team
    Editorial Team added an answer You can use the classes in the System.ServiceModel.Syndication namespace to… May 13, 2026 at 10:49 pm
  • Editorial Team
    Editorial Team added an answer I use them as follows -User ---login ---register ---logout ---forgotpassword… May 13, 2026 at 10:49 pm

Related Questions

I am attempting to route a URL that does not have a static action
I need to store a lookup table as an instance member in one of
I'm wondering what the best approach is to verify that a class has all
I currently use CodeIgniter as my framework of choice when using PHP. One of
I'm working on a site where the images and other resources will be located

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.