Skip to content

Instantly share code, notes, and snippets.

View decko's full-sized avatar

André "decko" de Brito decko

View GitHub Profile
@decko
decko / gist:3163932
Created July 23, 2012 14:34
Atribuições - Exemplo
class Mandato(models.Model):
titular = models.ForeignKey(Pessoas, blank=True, null=True, related_name='titular')
atribuicao = models.CharField('Atribuição', max_length=1, choices=(('P', 'Presidente'), ('V', 'Vice-Presidente'), ('D', 'Diretor')))