User groups and group permissions in newforms admin
If you follow strictly Brian Rosner's screencast on converting to newforms-admin, you'll find you suddenly end up with an admin site that takes away User and Group (permissions) editing options. That's no slight against Brian, believe me - it's a great screencast, and I wouldn't have been able to ...
Read More
Read More
I'm going to DjangoCon!
In like Flynn
Read More
- "To be quickly and/or emphatically successful."
Read More
Pagination: it's not pretty, but it works
I wanted a simpler solution than django-pagination. Django-pagination looks easy to implement, particularly thanks to Eric Florenzano's stellar screencast, but the actual installation process isn't very well-documented. Besides, I wanted something that didn't require installing a lot of outside code, and I sure don't want to have ...
Read More
Read More
That's right, the women are smarter
Girls Close the "Math Gap" [Alternet] Gender Similarities Characterize Math Performance [Science Magazine] Girls Bridge Gender Divide in Math [ABC News]
Read More
Read More
Oh Django, how do I love thee? Let me count the joins ...
Let's say I have three simple models - news articles, their categories, and the table that defines which articles are in which categories:
Read More
class Article(models.Model): title = models.CharField(max_length=40, unique=True) body = models.TextField() class Category(models.Model): name = models.CharField(max_length=40, unique=True) class ArticleCategory(models.Model): article = models.ForeignKey(Article) category = models.ForeignKey(Category)
To get ...Read More





