Re: Pydev + Django + Ubuntu 9.10

2009-12-15 Thread paul.dorman
I can confirm that removing the Python interpreter and re-adding solved this issue for me. I'm using Karmic packages for Eclipse and for Django. On Dec 8, 8:32 am, Brian McKeever wrote: > I'm using django from the repositories. > Installed this > way:http://docs.djangoproject.com/en/dev/topics/i

Re: Content blocks editable in Admin

2009-07-09 Thread paul.dorman
Django-chunks appears to be the perfect solution to my problem. Thanks Daniel! Thanks to you too Eugine for your response. On Jul 10, 2:19 am, Daniel Roseman wrote: > On Jul 9, 8:47 am, "paul.dorman" wrote: > > > > > Hi all, > > > I'd like to include

Content blocks editable in Admin

2009-07-09 Thread paul.dorman
Hi all, I'd like to include blocks of content in my templates which is editable in the Admin app. I'd design the overall template, but include bits that the computer illiterate folks here could change, something like this: [my template] [a form which is included in the template] [a block of con

Re: Directed graph implementations for Django

2007-09-18 Thread paul.dorman
specific and take advantage of the > limitations in the data. (like the divided room problem where a > conference room might have 3 parts which can > make a total of 6 'rooms', but have special meaning for room > scheduling). But the NavBar is closest to what > you are trying

Re: Directed graph implementations for Django

2007-09-17 Thread paul.dorman
Thanks for your response Julio, something similar yes. What I'm after is an Django implementation of an directed acyclic graph. I understand there's some complexity involved to ensure no cycles can be created (which I understand is the graph equivalent of an endless loop). There's plenty of good