On Aug 18, 2005, at 8:48 AM, Milton Waddams wrote:
--- view ---
............
latest_stories_list = storys.get_list(order_by=['-pub_date'], limit=5,
active__exact=1, sites__domain__exact=DOMAIN)
............
Currently I'm hardcoding DOMAIN, though plan to pull it in from the
http headers.
The Django convention is to set SITE_ID in your settings file and
then do stories.get_list(sites__id__exact=SITE_ID). If you do it
this way the more introspective parts of the admin (the auto-doc
system in particular) will work for you.
Jacob