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 now since I am new to Django, I
just want to simply organize my music and be able to easily sort.

I know I will need:

from django.db import models

class Artist(models.Model):
        name = models.CharField(max_length=30)
        genre = models.CharField(max_length=30)

class Song(models.Model):
        name = models.CharField(max_length=30)
        artist = models.ForeignKey(Artist)

What else can I do to help me get a start with this? I've gone through
the tutorial and I understand how Django works, its just a matter of
getting some hands on experience.

Thanks for any help.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to