When an entity has more of one relationship with another entity, the views fails.
For example if in ng-admin-demo add a field tags-2 to posts
In post.listView add a field:
nga.field('tags-2', 'reference_many')
.targetEntity(tag)
.targetField(nga.field('name'))
In post.editionView add a field:
nga.field('tags-2', 'reference_many')
.targetEntity(tag)
.targetField(nga.field('name'))
.cssClasses('col-sm-4')
Steps to generate this bug:
1- View post

2- Add tags and tags-2 in post

3- Save post

4- List all post

5- View edited post

6- Edit post

When you add the second relationship to the entity, in listView and showView the relations can't be viewed. Only one of the two relationships is visible but in the editionView can be seen well.
When an entity has more of one relationship with another entity, the views fails.
For example if in ng-admin-demo add a field tags-2 to posts
In post.listView add a field:
In post.editionView add a field:
Steps to generate this bug:
1- View post

2- Add tags and tags-2 in post

3- Save post

4- List all post

5- View edited post

6- Edit post

When you add the second relationship to the entity, in listView and showView the relations can't be viewed. Only one of the two relationships is visible but in the editionView can be seen well.