3
votes
How do I create trivial customized field types in Django models?
I'd do this with a subclass of Django's PositiveIntegerField:
from django.db import models
class Card(object):
"""The ``Card`` class you described."""
...
class CardField( …
1
vote
How to externally populate a Django model?
I've used cron to update my DB using both a script and a view. From cron's point of view it doesn't really matter which one you choose. As you've noted, though, it's hard to beat the simplicity o …
3
votes
django template includes
If there is common code between the story templates that isn't needed site-wide, I'd create a story_base (extending the original base) and have my story templates extend t …
