I'm reading the play tutorial and to spice things up a little bit I decided to use @CRUD.For instead of using the default model name pluralized. The problem is that I'm trying to override the template of that model and, using @CRUD.For, it just doesn't seem to work. However, when I use the default name it just works...
I have:
1) Model in
app/models/Comment
2) Admin class extending CRUD annotated with @CRUD.For(Comment.class)
app/controllers/admin/AdminComments
3) I have the file
app/views/AdminComments/list
4) I'm using the command:
play crud:ov --template AdminComments/list
Then I check the admin area and nothing... As I said, when I use the default name Comments it works.
Thanks in advance.