I think Djangoforms should be removed for 2 reasons :)
1 - Personaly, (so not very important :p ), I think that djangoforms is overkill for only 3 text fields.
2 - Most important this time : Djangoforms goes against the second rule of bloggart "Good isolation of code and markup. Users shouldn't have to understand the innards of our blogging software if all they want to do is change how the blog looks or is laid out." and particulalry for 2 things :
theming : for example height, width,... are set inside .py files and depend on the Djangoform. Not very easy to change this if you want to skin this part.
i18n : I'd like to support english and french for the admin part, but currently I can't translate the labels "title", "body" and "tags". They are part of the djangoforms.
So I think it could be a nice feature to remove Djangoforms and to use for example jquery to check the forms (mandatory fields) and add a nice alert box (jalert : http://abeautifulsite.net/notebook_files/87/demo/)... and maybe start a little Ajax (for the preview for example,...)
And example of jquery code to validate the form (it has to be checked server side too)
Githubissues.
Githubissues is a development platform for aggregating issues.
I think Djangoforms should be removed for 2 reasons :)
1 - Personaly, (so not very important :p ), I think that djangoforms is overkill for only 3 text fields.
2 - Most important this time : Djangoforms goes against the second rule of bloggart "Good isolation of code and markup. Users shouldn't have to understand the innards of our blogging software if all they want to do is change how the blog looks or is laid out." and particulalry for 2 things :
So I think it could be a nice feature to remove Djangoforms and to use for example jquery to check the forms (mandatory fields) and add a nice alert box (jalert : http://abeautifulsite.net/notebook_files/87/demo/)... and maybe start a little Ajax (for the preview for example,...)
And example of jquery code to validate the form (it has to be checked server side too)
Githubissues.