open-craft / custom-form-app

An example app that can be used as a template for extending the registration form in the OpenEdx LMS.
16 stars 49 forks source link

Fix validation errors, add to admin #1

Closed bradenmacdonald closed 8 years ago

bradenmacdonald commented 8 years ago

@Kelketek I found that error_messages was not being used (it just said "this field is required").

So this PR updates the example to have working error_messages, by moving it from the model to the form. See this wontfix django bug for details.

I also made the new data show up in the admin, although not very well.