Sorry didnt know how else to describe what I am trying to do

I have 3 models

Advice

AdviceLevel

Organisation

So the idea is:

An organisation can dispense more than 1 advice:

class Organsiation(models.Model):
    title = models.CharField(max_length=150)
    advice = models.ManyToManyField(Advice)

Ok BUT each advice subject within an organsiation needs to be graded as to 
a level capability 1 to 4
So in the model how can I effectively tie a foreign key to each advice 
selected in the ManyToMany field call?

Cheers for any enlightement
    
    

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a17d0371-7dea-4863-9326-894b35ccffb5%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to