I have the following:
<img data-ng-src="{{image.Url}}" alt="" />
I need the value in data-ng-src to be different according to a condition.
If image.IsAdvert is true then:
data-ng-src="{{image.Url}}"
if the image.IsAdvert is false then
data-ng-src="file/{{image.Url}}"
How can I do this?