Either of two below should work for you:

(!gs.hasRole("abc_template_read") && (gs.hasRole("abc_template_create") || gs.hasRole("abc_template_admin"))) && current.u_state != "review" 


(gs.hasRole("abc_template_create") || gs.hasRole("abc_template_admin")) && current.u_state != "review"
 


Hope that helps!