Can Angular syntax be included in Razor:
In the code below I am trying to say if "p.name" is not equal to "Select All" display an image but I dont think I can include {{p.name}} in the if statement
<div ng-repeat="p in Data.platforms">
<div style="font-size: smaller">
<input type="checkbox" ng-model="p.selected" />
@if ("p.name" != "Select All") {
<img ng-src="{{'/Content/img/'+p.name+'.jpg'}}" width="16" height="16" alt="{{p.name}}" />
}
{{p.name}}
</div>
</div>