When ever you create an OpsTool, there is a default Controller created that is named after your tool.
[project]/assets/opstools/[ToolName]/controllers/[ToolName].js
This is the main controller for the Tool, and it's job is to attach and coordinate any of the Tool's sub controllers.
After looking at the mockup file, we decide there are two additional controllers we need to make: List and Detail

# from [project] directory
$ appdev controllerUI opstools/ExampleTool List
$ appdev controllerUI opstools/ExampleTool DetailWhen this completes you should now have:
[project]/assets/opstools/ExampleTool/controllers/List.js[project]/assets/opstools/ExampleTool/controllers/Details.js
< Views and HTML Animation
Next: Attach your Program Controller >