3
votes
Django apps equivalent in ASP.NET MVC?
Django doesn't follow the traditional MVC pattern, since they advocate that in the Web world, their MTV is more suitable. In the overall, I prefer Django over Rails because of the django apps. You …
1
vote
Variable number of inputs with Django forms possible?
If you run
python manage.py shell
and type:
from app.forms import PictureForm
p = PictureForm()
p.fields
type(p.fields)
you'll se …
1
vote
Rails or Django? (or something else?)
I've written a blog entry about Rails vs Django that replies to your question.
Since you will just need to displa …
1
vote
Keeping Django Views DRY
What about request.user?
if request.user.is_authenticated():
name = request.user.username
else:
name = "Anonymous"
Anyway, if it wasn't already available i …
