export_modal.html 1000 B

1234567891011121314151617181920212223242526272829
  1. <!-- <p> -->
  2. <!-- Exporting will export a cleaned sharable dashboard that can be imported -->
  3. <!-- into another Grafana instance. -->
  4. <!-- </p> -->
  5. <div class="share-modal-header">
  6. <div class="share-modal-big-icon">
  7. <i class="fa fa-cloud-upload"></i>
  8. </div>
  9. <div>
  10. <p class="share-modal-info-text">
  11. Export the dashboard to a JSON file. The exporter will templatize the
  12. dashboard's data sources to make it easy for other's to to import and reuse.
  13. You can share dashboards on <a class="external-link" href="https://grafana.net">Grafana.net</a>
  14. </p>
  15. <div class="gf-form-button-row">
  16. <button type="button" class="btn gf-form-btn width-10 btn-success" ng-click="ctrl.save()">
  17. <i class="fa fa-save"></i> Save to file
  18. </button>
  19. <button type="button" class="btn gf-form-btn width-10 btn-secondary" ng-click="ctrl.saveJson()">
  20. <i class="fa fa-file-text-o"></i> View JSON
  21. </button>
  22. <a class="btn btn-link" ng-click="dismiss()">Cancel</a>
  23. </div>
  24. </div>
  25. </div>