+
+ Play / Pause a simulation
+
+
+ TODO: simulation play / pause controls
+
+
diff --git a/app/views/sims/ManageSimView.js b/app/views/sims/ManageSimView.js
new file mode 100644
index 0000000..71fbb7e
--- /dev/null
+++ b/app/views/sims/ManageSimView.js
@@ -0,0 +1,15 @@
+class ManageSimView extends WindozDomContent {
+
+ constructor() {
+ super()
+ Object.assign(this, app.helpers.basicDialogs)
+ }
+
+ async DOMContentLoaded(options) {
+ this.models = options.models
+ ui.eicfy(this.el)
+ // TODO: implement
+ }
+}
+
+app.registerClass('ManageSimView', ManageSimView)
diff --git a/doc/prompts_blobs.txt b/doc/prompts_blobs.txt
new file mode 100644
index 0000000..5ce199c
--- /dev/null
+++ b/doc/prompts_blobs.txt
@@ -0,0 +1,5 @@
+In SPARC, the app menu is created from app/assets/json/global/app-menu-map.json
+Each entry defines a route.
+A "high level" route is then configured in app/config/baseRoutes.json that delegates a group of URLs to a controller.
+Then, a controller, in its associated .json file defines in its "routes" section the sub-route managed by the controller,
+and the method to be called inside that controller.
\ No newline at end of file