Re: Dynamic Inline admin form not consistently working in dev version

2010-03-21 Thread scooper
Probably a non-issue. I just force-cleaned Firefox's cache and it looks much better. I don't know if updating from 1.2 to the latest SVN code helped, because that alone didn't fix it. The problem was quite stubborn and repeatable until the cache was flushed. For some reason I'm finding Firefox'

Dynamic Inline admin form not consistently working in dev version

2010-03-21 Thread scooper
Hi, I just installed a fresh development Django from SVN. I wanted access to the capability to dynamically add child rows when there is a parent- child foreign key relationship between two model tables. E.g. My Version table has a ForeignKey to a Project table. I would like to be able to add mu

Re: Creating Dybamic "models"

2008-07-20 Thread scooper
> I am trying to find a more flexible way, where I can add > custom fields (for example add a new text field or a check box). How > ca I do this without modifyig the model? If you want something that allows for unknown future additions of new fields, I personally would consider using adding "prop

Re: Creating link to root

2007-09-29 Thread scooper
> I solved this problem in the following way: > 1) Set thestylesheetlink tag to > 2) Created a rule in urls.py where r"^styles\.css" points to an > appropriately written view. > 3) Created a view that output the desired CSS code as plain text > (using a template) Hi, I'm pretty new to django, an