Re: Is their an easy way to implement an ordered list of, say, urls in Django

2012-12-27 Thread Kevin Monceaux
On Sat, Dec 22, 2012 at 05:22:05PM -0800, Doug S wrote: > I want to store an ordered list of items in my models > and allow insertions and appending to the end of the list. I've been using Django Positions for handling ordered lists: https://github.com/jpwatts/django-positions/ It seems to

Re: Is their an easy way to implement an ordered list of, say, urls in Django

2012-12-26 Thread Doug Snyder
OK, cool, thanks. I'll keep in mind the custom SQL solution for the future but for this project I think I do the editing on the front end ( see below) I have a strange background where I'm learning django but have never used SQL outside of django's ORM. I haven't played around with custom SQL since

Is their an easy way to implement an ordered list of, say, urls in Django

2012-12-22 Thread Doug S
Hi I'm still a newbie but I'm pretty sure this is not a really really stupid question. I want to store an ordered list of items in my models and allow insertions and appending to the end of the list. I'm aware that often with ordered data the implementation is nice and clean where you store the it