How can I do the following (java):
for(int i = 0; i < 81 ; i+=20){ //Should loop through 5 times! }
in Thymeleaf?
I\'ve tried thi
Add step to your code is quite easy.
#{numbers.sequence(0, 81, 20)}