MikeAr
MikeAr

Reputation: 1051

Good examples of implementing forms with client/server side validation in Django

While Django makes it very easy to create simple HTML forms, I wonder if anyone could suggest good open-source Django projects with examples for implementing "modern-looking" forms with additional elements such as:

  1. disqus registration form
  2. twitter registration form

I have looked at several projects:

  1. django-uni-form
  2. django-crispy-forms (seems to be a successor for previous one)
  3. django-ajax-forms

but I can't seem to find any good examples to learn from.

Any suggestions are welcome.

Upvotes: 2

Views: 950

Answers (1)

Brandon Taylor
Brandon Taylor

Reputation: 34583

Have a look at Twitter Bootstrap. It integrates very well with django-crispy-forms and will let you produce very clean, modern looking forms quite easily, with very little work on the client side.

It won't help you out with Ajax functionality, but will handle look and feel quite nicely.

Upvotes: 1

Related Questions