paneleditor.html 735 B

123456789101112131415161718
  1. <div class="modal-header">
  2. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  3. <h3>{{panel.title}} Editor</h3>
  4. </div>
  5. <div class="modal-body">
  6. <h4>General <small> panel settings</small></h4>
  7. <div ng-include src="'partials/panelgeneral.html'"></div>
  8. <h4 style="text-transform: capitalize;">{{panel.type}} <small> panel settings</small></h4>
  9. <div ng-include src="edit_path(panel.type)">No additional settings are available for this type of panel.</div>
  10. </div>
  11. <div class="modal-footer">
  12. <!-- close_edit() is provided here to allow for a scope to perform action on dismiss -->
  13. <button type="button" class="btn btn-success" ng-click="close_edit();dismiss()">Close</button>
  14. </div>