Posts by Davyson Diogenes • 9 points
2 posts
-
-1
votes1
answer25
viewsQ: How to use a custom tag within an IF tag?
Personal as I use a custom tag within an if tag? ex: {% if {%outraTag x y z %} == "Sucesso" %} my custom_field_tag @register.simple_tag def outraTag(x,y,z): r=x+y+z if r ==3: return "Sucesso" else:…
-
1
votes0
answers54
viewsQ: How to change a value in another class?
I’m trying to change the value of a variable in another class but I’m not getting it. package com.cursoandroid.firebaseapp.novotestebanco; public class Logado { public String situacao; Logado(String…