Ok, I’m just playing around with django and so far all that I can said … I’m impressed, really. This gonna be brief, I’m too tired already but this is what I like about it:-
- admin interface - this almost complete.
- In view, it’s up to me on how to return the output either using template or anything else. All it needs is
HttpResponseobject, how ? it don’t care. fair and I love it. why ? later.
and there’s one thing (could be more later) that I don’t like. The url stuff. django allow us to design what they call pretty url so that I can map something like /blog/this to any modules/method that I wish and they use regex for that. I’m not saying that I hate regex, it’s powerfull and lot of people love it but it became somewhat complicated. Pretty urls is good but I don’t want to spend half of my time just designing url. Drupal a little better here, it allow us to map the menu to module->function just like django ‘pretty url’ but in more simple way. No need to mention hours that I spend debugging the tutorial finding why my POST request does not exist only to discover that I’m missing a trailing slash in my ‘pretty url’.
Above all, I like it. Time to sleep.
