template.html 990 B

123456789101112131415161718192021222324252627282930
  1. <div class="modal-body">
  2. <div class="modal-header">
  3. <h2 class="modal-header-title">
  4. <i class="fa fa-copy"></i>
  5. <span class="p-l-1">Row Options</span>
  6. </h2>
  7. <a class="modal-header-close" ng-click="ctrl.dismiss();">
  8. <i class="fa fa-remove"></i>
  9. </a>
  10. </div>
  11. <form name="ctrl.saveForm" ng-submit="ctrl.save()" class="modal-content text-center" novalidate>
  12. <div class="section">
  13. <div class="gf-form">
  14. <span class="gf-form-label width-7">Title</span>
  15. <input type="text" class="gf-form-input max-width-13" ng-model='ctrl.row.title'></input>
  16. </div>
  17. <div class="gf-form">
  18. <span class="gf-form-label width-7">Repeat for</span>
  19. <dash-repeat-option panel="ctrl.row"></dash-repeat-option>
  20. </div>
  21. <div class="gf-form-button-row">
  22. <button type="submit" class="btn btn-primary" ng-click="ctrl.update()">Update</button>
  23. <button type="button" class="btn btn-inverse" ng-click="ctrl.dismiss()">Cancel</button>
  24. </div>
  25. </div>
  26. </form>
  27. </div>