def regulamentoMestradoConceito(self, obj): if obj.id in self.listaIdsIrregConceitoBolsa: return htmlIconFalse() else: return htmlIconTrue()
def disponibilidade(self, obj): if obj.aluno == None or obj.aluno == "": return htmlIconTrue() else: return htmlIconFalse()
def regulamentoCargaHr(self, obj): if obj.id in self.listaIdsIrregCargaHrBolsa: return htmlIconFalse() else: return htmlIconTrue()
def regulamentoArtigo(self, obj): if obj.artigo: return htmlIconTrue() else: return htmlIconFalse()
def regulamentoQualificacao(self, obj): if obj.qualificacao: return htmlIconTrue() else: return htmlIconFalse()
def regulamentoProficiencia(self, obj): if obj.proficiencia: return htmlIconTrue() else: return htmlIconFalse()
def regulamentoCHBasico(self, obj): if obj in self.listaIdsIrregCHBasico: return htmlIconFalse() else: return htmlIconTrue()
def regulamentoCRA(self, obj): if obj in self.listaIdsIrregCRA: return htmlIconFalse() else: return htmlIconTrue()
def regulamentoAbandono(self, obj): if obj.id in self.listaIdsIrregAbandono: return htmlIconFalse() else: return htmlIconTrue()
def regulamentoMestradoCra(self, obj): if obj.id in self.listaIdsIrregCra: return htmlIconFalse() else: return htmlIconTrue()