admindocs app - almost, but not, working

2011-11-04 Thread lorin
I followed the instructions to activate the admindocs (https:// docs.djangoproject.com/en/dev/ref/contrib/admin/admindocs/#overview) and now I see a link Documentation, next to Welcome, myname in the admin, and that goes to a nice page at admin/doc. But none of the hyperlinks go to working pages (T

Re: admindocs app - almost, but not, working

2011-11-07 Thread lorin
, etc. Hope this helps somebody else. On Nov 4, 3:45 pm, lorin wrote: > I followed the instructions to activate the admindocs (https:// > docs.djangoproject.com/en/dev/ref/contrib/admin/admindocs/#overview) > and now I see a link Documentation, next to Welcome, myname in the > admin, a

Re: admindocs app - almost, but not, working

2011-11-09 Thread lorin
o you > are running? > > > > > > > > On Mon, Nov 7, 2011 at 5:31 PM, Brett Epps wrote: > > If this is a bug in Django, you should file a Trac ticket for it here: > > >https://code.djangoproject.com/newticket > > > Brett > > > On 11/7/11 3:40 PM,

union and intersection of querysets

2006-07-05 Thread Lorin Hochstein
s from somewhere union_hyps = union([t.hypothesis_set.all() for t in topics]) intersection_hyps = intersection([t.hypothesis_set.all() for t in topics]) Lorin --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django

Re: union and intersection of querysets

2006-07-05 Thread Lorin Hochstein
Malcolm Tredinnick wrote: > On Wed, 2006-07-05 at 21:38 +0000, Lorin Hochstein wrote: > > One of these (all hypotheses related to any topic on the list) is easy: > > Hypothesis.objects.filter(topics__in = topics) > Ah, nice and simple... Somehow I manage to mis