<div class=“modal-header”>

<h3 class="modal-title"><strong><%= class_name %> details</strong></h3>

</div>

<div class=“modal-body”>

<table class="table table-condensed table-hover table-striped">
    <tr>
        <td><strong>Name</strong></td>
        <td>{{<%= file_name %>.name}}</td>
    </tr>
    <tr>
        <td><strong>Date created</strong></td>
        <td>{{<%= file_name %>.created_at | date}}</td>
    </tr>
</table>

</div>

<div class=“modal-footer”>

<button class="btn btn-default" ng-click="dismiss()">OK</button>

</div>