Reputation: 1051
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:
I have looked at several projects:
but I can't seem to find any good examples to learn from.
Any suggestions are welcome.
Upvotes: 2
Views: 950
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