Нема описа

modal_case_pipelines.html 2.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <link rel="stylesheet" href="/static/assets/css/dropzone.css">
  2. <div class="modal-header">
  3. <h4 class="modal-title mt-2 mr-4">Processing pipelines</h4>
  4. <button type="button" class="pull-right btn btn-white" data-dismiss="modal" aria-label="Close"><span
  5. aria-hidden="true"><i class="fa fa-times"></i></span></button>
  6. </div>
  7. <div class="modal-body">
  8. <div class="container col-md-12">
  9. <div class="row">
  10. <div class="col-12">
  11. <p>Select processing pipeline and drop analysis files below. Press Process to start the processing. Do not close the page until the upload is finished.<br/>
  12. Supports up to 40 files and 10GB at once.</p>
  13. <div class="form-group">
  14. <div class="form-group">
  15. <label for="import_pipeline" class="placeholder">Processing pipeline</label>
  16. <i class="fas fa-question-circle mr-2" data-toggle="popover"
  17. title="Pipelines"
  18. data-content="Pipelines are the way files dropped below are processed. Each pipelines handles a different type of file."></i>
  19. {{ form.pipeline(class="selectpicker pl--6 btn-outline-white", id="update_pipeline_selector") }}
  20. </div>
  21. <div class="form-group col-md-6 mb-2">
  22. {% for itm in pipeline_args %}
  23. {% for tm in itm[2] %}
  24. <div class="input-group mb-4 control-update-pipeline-args control-update-pipeline-{{itm[0]}}">
  25. <div class="input-group-prepend">
  26. <span class="input-group-text">{{tm[0]}} ({{tm[1]}})</span>
  27. </div>
  28. <input class="form-control update-{{itm[0]}}" id="{{tm[0]}}" name="{{tm[0]}}" type="text" value="" {{tm[1]}}>
  29. </div>
  30. {% endfor %}
  31. {% endfor %}
  32. </div>
  33. <div class="tab-content col-md-12">
  34. <div class="dropzone col-md-12" id="files_drop_1">
  35. </div>
  36. </div>
  37. </div>
  38. <span id="msg_submit" class="ml-4"></span>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. <div class="modal-footer">
  44. <button type="button" class="btn btn-default float-left" data-dismiss="modal">Dismiss</button>
  45. <button type="button" class="btn btn-outline-success float-right"
  46. id="submit_update_case" onclick="submit_update_casefn();">Process</button>
  47. </div>
  48. <script src="/static/assets/js/plugin/dropzone/dropzone.js"></script>
  49. <script src="/static/assets/js/iris/case.pipelines.js"></script>