Using AngularJs, i have a double loop to display data, and a filter by year.
When, for a given year, i have no results, i want to display the message "No results...", but because of the double loop, i'm not able to get it to work
Here is a demo http://plnkr.co/edit/OSWSyXk8bnvmj1rFwHJ0?p=preview
The div i want to display when
<div ng-if="personnes.length < 1" class="noresults">No RESULTS</div>
To see an example with no results, choose "2013-2014" in the Year dropdown
Thanks a lot