Re: votes/score

2013-11-18 Thread Leonardo Giordani
Érico, it is not really clear to me what you are trying to accomplish. That HTML in MYVALUES is a try to show that line in the dropdown? And why is "{{form|safe}}" there? May you please decribe what you would like to obtain? Cheers, Leo Leonardo Giordani Author of The Digital Cat

votes/score

2013-11-14 Thread Érico Oliveira
Hy, i'm learning django. My idea is to give marks / votes for a selected job. Works but not as I would. class Job(models.Model): title= models.CharField(max_length=20) slug = models.SlugField(max_length=40, blank=True) def __unicode__(self): return self.title class Vote(mod