I have this code:
<ul class="unstyled">
<li class="card" ng-repeat="user in users">
<form ng-submit="edit()">
<input type="text" ng-model="editname" size="30"placeholder="add name here">
<input class="btn-primary" type="submit" value="edit">
</form>
</li>
</ul>
which card class will be duplicate based on users array. I want to have unique ng-model so that when I edit one of them, it will not affect others. I believe I can use $index. How can I make
ng-model="editname"
into
ng-model="editname + $index"
Or is there a better way to do this?
user.name?