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( …
14
votes
Navigation in django
I use template inheritance to customize navigation. For example:
base.html
<html>
<head>...</head>
<body>
...
{% block nav % …
3
votes
How can i create a lookup in Django?
The name of your field (userid instead of user) makes me think that you may be confused about the behavior of Django's ForeignKey.
If you define a mod …
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 …
2
votes
Pip + WSGI import errors
This is what my WSGI script for Django in a virtualenv looks like:
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'myproject.settings'
import site
site.addsitedir('/path/to/virtu …
