I was wondering if there is a way in angular to conditionally display content other than using ng-show etc. For example in backbone.js I could do something with inline conte
if you want to display "None" when value is "0", you can use as:
{{ $scope.amount === "0" ? $scope.amount : "None" }}
or true false in angular js
{{ $scope.amount === "0" ? "False" : "True" }}