2022-06-07 14:16:49 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>bpmn-js-spiffworkflow</title>
|
2022-10-29 10:36:25 -04:00
|
|
|
|
2022-06-07 14:16:49 -04:00
|
|
|
<meta charset="utf-8"/>
|
2022-10-29 10:36:25 -04:00
|
|
|
<!-- here are the core dependencies you will need to include -->
|
2022-06-07 14:16:49 -04:00
|
|
|
<link rel="stylesheet" href="vendor/bpmn-js/assets/diagram-js.css"/>
|
2022-06-21 17:04:24 -04:00
|
|
|
<link rel="stylesheet" href="vendor/bpmn-js/assets/bpmn-js.css"/>
|
2022-06-07 14:16:49 -04:00
|
|
|
<link rel="stylesheet" href="vendor/bpmn-js/assets/bpmn-font/css/bpmn-embedded.css"/>
|
2022-06-15 09:51:46 -04:00
|
|
|
<link rel="stylesheet" href="vendor/bpmn-js-properties-panel/assets/properties-panel.css"/>
|
2022-10-29 10:36:25 -04:00
|
|
|
|
|
|
|
<!-- Some local css settings -->
|
2022-06-07 14:16:49 -04:00
|
|
|
<link rel="stylesheet" href="css/app.css"/>
|
2022-08-17 14:08:20 -04:00
|
|
|
<link rel="shortcut icon" href="#">
|
2022-06-21 17:04:24 -04:00
|
|
|
|
2022-10-29 10:36:25 -04:00
|
|
|
<!-- A python code editor, we are using CodeMirror here -- see app.js for how this is wired in -->
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/codemirror.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/codemirror.min.css">
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/mode/python/python.min.js"></script>
|
|
|
|
|
2022-06-21 17:04:24 -04:00
|
|
|
<!-- Just have this for the download file icon -->
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
2022-10-29 10:36:25 -04:00
|
|
|
|
2022-06-07 14:16:49 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-06-21 17:04:24 -04:00
|
|
|
<div id="menu">
|
2022-09-29 23:19:04 -04:00
|
|
|
<button id="downloadButton" class="bpmn-js-spiffworkflow-btn"><i class="fa fa-download"></i> Download</button>
|
|
|
|
<button id="uploadButton" class="bpmn-js-spiffworkflow-btn">Open a file</button>
|
2022-06-21 17:04:24 -04:00
|
|
|
</div>
|
2022-06-15 09:51:46 -04:00
|
|
|
<div id="container">
|
|
|
|
<div id="modeler"></div>
|
|
|
|
<div id="panel"></div>
|
|
|
|
</div>
|
2022-10-29 10:36:25 -04:00
|
|
|
<div id="code_overlay">
|
|
|
|
<div id="code_editor"></div>
|
|
|
|
<div id="code_buttons">
|
|
|
|
<button id="saveCode" class="bpmn-js-spiffworkflow-btn">Save</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Here we load up our application, it's where the configuration happens. -->
|
2022-06-07 14:16:49 -04:00
|
|
|
<script src="app.js"></script>
|
2022-10-29 10:36:25 -04:00
|
|
|
|
2022-06-07 14:16:49 -04:00
|
|
|
</body>
|
2022-06-21 17:04:24 -04:00
|
|
|
</html><!---->
|