Posts by T. Tosin • 19 points
2 posts
-
0
votes1
answer27
viewsQ: Python Django heritage with Unique attribute
I’m in a little trouble. class Pessoa(models.Model): cpf = BRCPFField(**unique=true**) class Aluno(Pessoa): novo_atributo = .... class Instrutor(Aluno): outro_atributo = ... class Gestor(Pessoa):…
-
1
votes0
answers122
viewsQ: List the directory names of a given location in a selectOneMenu
Hello, I am with this doubt, I already managed to list the directories with methods found on the internet, but I could not implement in a method that feeds a <h:selectOneMenu> to select an…