Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I learn Django ORM.

class Toy(models.Model):
    name = models.CharField(max_length=20)
    desc = models.TextField()
    price = models.DecimalField(max_digits=5, decimal_places=2)

class Box(models.Model):
    name = models.CharField(max_length=20)
    proprietor = models.ForeignKey(User, related_name='User_Box')
    toys = models.ManyToManyField(Toy, blank=True)

I try something like this in views:

def show_box(request):
    user = request.user
    box = Box.objects.filter(proprietor = user)

    return render_to_response('box.html', {'box': box})

in template:

{% for b in box %}
    Toy: {% for toys in b.toys.all %}{{ toys }}<br/>{% endfor %} 
    Price:
{% endfor %}

How to display the price of toys in template?

share|improve this question

1 Answer

up vote 1 down vote accepted

Just with the normal dot notation. toys is an instance of the Toy model so you can access the attributes on it:

{% for box in boxes %}
    {% for toy in box.toys.all %}
        Toy: {{ toy.name }}<br/>
        Price: {{ toy.price }}<br/>
    {% endfor %}
{% endfor %}

Note that I've changed your variable names, which were confusing: the box variable that you passed to the template should really be boxes, as it's a set of all the boxes owned by that proprietor, while toys inside the template should be toy, as it's one specific toy from a box, not a set.

share|improve this answer
Thank you. Very helpful – k44 Sep 27 '12 at 11:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.