I have a table that I fill with ng-repeat, in each row I have a button and I want that when I click on it the second ng -if="company.id == idcompany" appears but only in that row and it appears in all. How can I do it?
<tr ng-repeat="company in companiesList">
........
<div ng-if="company.verified == 'false'">
<input type="button" ng-class="classBtnActivar" value="ACTIVAR" ng-click="activateCompany(company.id)">
<div style="background-color: #d1d1d1; border-radius: 100px;" ng-if="company.id == idcompany">
<p style="text-align: center">¿Quieres activar todos los comercios de la compañía?</p>
<div style="text-align: center">
<input type="button" ng-class="classBtnActivar" value="SI" style="text-align: center">
<input type="button" ng-class="classBtnActivar" value="NO" style="text-align: center">
</div>
</div>
</div>