ブートストラップのポップオーバーにカスタムヘッダーを追加する方法..以下のコードを使用しましたが、いくつかのリンクを含むカスタムヘッダーを追加したいと思います:
<script type="text/ng-template" id="abc.html">
<div class="form-group">
<div class="popover-grid-block">
<p>Test</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default btn-sm btn-primary" title="SAVE" ng-click="SaveTestPlanData()" data-dismiss="popover">
<span aria-hidden="true" class="glyphicon glyphicon-floppy-disk"></span> {{ 'Save' | translate }}
</button>
<button type="button" title="CLOSE" class="btn btn-default btn-sm trigger" popover-close data-dismiss="popover">
<span aria-hidden="true" class="glyphicon glyphicon-eye-close"></span>
</button>
</div>
</div>
</script>