OSDN Git Service

Typescript, rearrangement project directory, develop zephyr command
[eos/zephyr.git] / front-end / app / templates / command.html
1 <div>
2 <uib-accordion-group heading="{{ctrl.heading}}" is-open="ctrl.isOpen" panel-class="panel-danger">
3         <uib-accordion-heading>
4             <h4 class="panel-title">
5                 [{{ctrl.index}}: {{ctrl.name}}]
6                 <button class="pull-right"
7                         ng-click="ctrl.removeMySelf(ctrl.index)">
8                     <span class="glyphicon glyphicon-remove"></span>
9                 </button>
10             </h4>
11         </uib-accordion-heading>
12         <code>
13             <form ng-submit="ctrl.submit()">
14                 <option info="o" files="ctrl.files"  ng-repeat="o in ctrl.options"></option>
15                 <button type="submit" class="btn btn-default">
16                     Execute
17                 </button>
18             </form>
19         </code>
20     </uib-accordion-group>
21 </div>