Re: New to Django, sheet music organization site

2011-01-03 Thread Kyle
Thank you Tim! That was the problem! I will remember to post the full error stack next time. Thanks again, Kyle On Jan 3, 6:00 am, Tim Sawyer wrote: > On 03/01/11 03:53, Kyle wrote: > > > When I try to access my Object, I get an error "invalid literal for > > int() with base 10". I know it has s

Re: New to Django, sheet music organization site

2011-01-03 Thread CrabbyPete
Good Luck. Just start banging it out. You'll see as you go how much more there is. On Jan 1, 11:24 pm, Kyle wrote: > I am wanting to create an app that helps me organize sheet music. I > want to be able to sort by the artist. Every piece of sheet music I > have I want to be scanned in and uploade

Re: New to Django, sheet music organization site

2011-01-03 Thread Greg Turner
On 3 January 2011 23:00, Tim Sawyer wrote: > On 03/01/11 03:53, Kyle wrote: > >> When I try to access my Object, I get an error "invalid literal for >> int() with base 10". I know it has something to do with ForeignKeys, >> but cannot find how to fix it. >> > > It helps if you post the full stack

Re: New to Django, sheet music organization site

2011-01-03 Thread Tim Sawyer
On 03/01/11 03:53, Kyle wrote: When I try to access my Object, I get an error "invalid literal for int() with base 10". I know it has something to do with ForeignKeys, but cannot find how to fix it. It helps if you post the full stack of the error - we can tell which line of code it came from

Re: New to Django, sheet music organization site

2011-01-02 Thread Kyle
Thank you very much! You have been very helpful. I have, however, run into another problem. When I try to access my Object, I get an error "invalid literal for int() with base 10". I know it has something to do with ForeignKeys, but cannot find how to fix it. **models.py**

Re: New to Django, sheet music organization site

2011-01-02 Thread Mike Dewhirst
On 3/01/2011 9:56am, Kyle wrote: Ok I have a good start. I have run into a problem though. In my database, I have an artist field. Most artists have a space in there name. When creating my URLs, how can I ignore white space? For example, take the artist Chris Tomlin. In my database, it will show

Re: New to Django, sheet music organization site

2011-01-02 Thread daniels
SlugField ? On Jan 3, 12:56 am, Kyle wrote: > Ok I have a good start. I have run into a problem though. In my > database, I have an artist field. Most artists have a space in there > name. When creating my URLs, how can I ignore white space? > > For example, take the artist Chris Tomlin. In my da

Re: New to Django, sheet music organization site

2011-01-02 Thread Kyle
Ok I have a good start. I have run into a problem though. In my database, I have an artist field. Most artists have a space in there name. When creating my URLs, how can I ignore white space? For example, take the artist Chris Tomlin. In my database, it will show as "Chris Tomlin", but I don't wan

New to Django, sheet music organization site

2011-01-02 Thread Kyle
I am wanting to create an app that helps me organize sheet music. I want to be able to sort by the artist. Every piece of sheet music I have I want to be scanned in and uploaded as an image file, then when I want to open a particular file, it opens as a PDF. This would be my long terms goals. For