Initially, in your plunker, there is a lack of model which results in nothing being displayed.
To showcase data within the model, you can follow the same procedure as displaying data elsewhere.
<div class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
To display the data, simply use {{object.name}}
according to your model structure.
For instance:
<h4 class="modal-title">{{title}}</h4>
If you wish to include a form within the modal, utilizing ng-model would be appropriate and it can be implemented like this:
<form name="testForm" ng-controller="ExampleController">
<input ng-model="name" name="anim" class="my-input"
aria-describedby="inputDescription" />
</form>
This facilitates the two-way binding of the name property from your model to the input field, pre-filling the input field accordingly. Further information on ng-model can be found here.