I am new to play 2.0 and I am looking for a way to iterate a hashmap in a html template. I have a form which is bound to a model (Java side) which has a hashmap(Long, List(Article)) attribute called articles.
In an older version, I had an arraylist in place of the hashmap. In my template, I used the @repeat helper that worked well.
@repeat(editBusinessForm("articles"), min = 0) { article =>
@businessarticle(article)
}
I tried several ways to adapt this @repeat or with @for but I couldn't find a way.
I need to display only a part of the articles depending on a category filter. I chose the hashmap to do that but maybe there is an other way.
Any help is appreciated.
