Sebastian Stark wrote: > <input type="radio" name="q1" value="2"> 2 ... > <span tal:define="r request/form/q1" > tal:condition="python:r==4"> The way this is set up, request/form/q1 will contain the string "4", not the integer 4. You need to change the input name to "q1:int", or else change the tal:condition to either "python:int(r)==4" or "python:r=='4'". Cheers, Evan @ 4-am