export_modal.html 896 B

12345678910111213141516171819202122232425
  1. <div class="share-modal-header">
  2. <div class="share-modal-big-icon">
  3. <i class="fa fa-cloud-upload"></i>
  4. </div>
  5. <div>
  6. <gf-form-switch
  7. class="gf-form"
  8. label="Export for sharing externally"
  9. label-class="width-16"
  10. checked="ctrl.shareExternally"
  11. tooltip="Useful for sharing dashboard publicly on grafana.com. Will templatize data source names. Can then only be used with the specific dashboard import API.">
  12. </gf-form-switch>
  13. <div class="gf-form-button-row">
  14. <button type="button" class="btn gf-form-btn width-10 btn-success" ng-click="ctrl.saveDashboardAsFile()">
  15. <i class="fa fa-save"></i> Save to file
  16. </button>
  17. <button type="button" class="btn gf-form-btn width-10 btn-secondary" ng-click="ctrl.viewJson()">
  18. <i class="fa fa-file-text-o"></i> View JSON
  19. </button>
  20. <a class="btn btn-link" ng-click="ctrl.dismiss()">Cancel</a>
  21. </div>
  22. </div>
  23. </div>