1
vote
Will Django be a good choice for a permissions based web-app?
If I read your updated requirements correctly, I don't think Django's existing auth system will be sufficient. It sounds like you need a full-on ACL system.
This subject has come up a numbe …
2
votes
Web-Developer’s Project Template Directory
I use a similar layout, but with one major exception: all of these directories live under a top-level media/ directory. This is for a few reasons:
This directory is rsync'd to two oth …
1
vote
Which modern web frameworks are popular in a corporate setting?
Another vote for Django. I'm not sure if the Washington Post or LA Times count as "corporate" but they have a lot more demands (both daily hits and time-to-new-feature) than your average "corporate …
0
votes
How to implement Symfony Partials or Components in Django?
Assuming you are going to be using the components in different places on different pages I would suggest trying {% include "foo.html" %}. One of the (several) downsides of the Django templating lan …
