vote up 0 vote down star

Hi to all!

Just begin my Python/Django experience and i have a problem :-)

So i have a model.py like this:

from django.db import models

class Priority(models.Model):
    name = models.CharField(max_length=100)

class Projects(models.Model):
    name = models.CharField(max_length=30)
    description = models.CharField(max_length=150)
    priority = models.ForeignKey(Priority)

class Tasks(models.Model):
    name = models.CharField(max_length=30)
    description = models.CharField(max_length=40)
    priority = models.ForeignKey(Priority)

In the priority table i plan to store data like 1.High, 2.Medium , 3.Low and in Tasks table priority will be stored as id (1, 2 or 3)

And the question is how to write a view that display all my tasks but with Priority named? For example:

name: Task 1

description: Description 1

priority: **High**
flag

40% accept rate

2 Answers

vote up 1 vote down check

Your view doesn't have to do much.

tasks = Tasks.objects.all()

Provide this to your template.

Your template can then do something like the following.

{% for t in tasks %}
    name: {{t.name}}
    description: {{t.description}}
    priority: **{{t.priority.name}}**
{% endfor %}
link|flag
ty very much! i know that was something simple :-))) – countnazgul Aug 19 at 15:52
vote up 0 vote down

There are many ways of accomplishing what you need. One of the easiest would be to keep a dictionary of number to string. Like this: 1->High, 2->Medium, 3->High.

Keep this dictionary outside of your view functions so that you can access it from any of your view functions that need to get the priority.

You could also simply write a switch that determines what to display in the template.

link|flag

Your Answer

Get an OpenID
or

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