I\'ve been reading about AngularJS and it seems very promising, the only thing I\'m trying to figure out, not specific for framework, but it\'s general for clie
Blesh is correct about only providing data to users with the appropriate role on the server side, but it sounds like you want to re-use pieces of your client UI.
In AngularJS, you could use ng-include and build up different partials for different pieces of data. So you could write something like this in both your "doctor" and "nurse" views:
And then have a separate HTML file called allergies.html:
Allergy info: {{someData}}
Another option would be to use directives.