-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7f789f
commit 4f48715
Showing
8 changed files
with
217 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<ul class="table-view"> | ||
{{#items}} | ||
<li class="table-view-cell media"><a href="/detail/{{name}}" class="navigate-right"><span class="media-object pull-left icon icon-gear"></span> {{name}} <button class="btn {{classes}}">{{message}}</button></a></li> | ||
{{/items}} | ||
<li class="table-view-cell table-view-divider">Actions</li> | ||
<li class="table-view-cell media"> | ||
<a rel="external" class="processAction" data-action="startAll"> | ||
<span class="media-object pull-left icon icon-play"></span> | ||
<div class="media-body"> | ||
Start All | ||
</div> | ||
</a> | ||
</li> | ||
<li class="table-view-cell media"> | ||
<a rel="external" class="processAction" data-action="stopAll"> | ||
<span class="media-object pull-left icon icon-stop"></span> | ||
<div class="media-body"> | ||
Stop All | ||
</div> | ||
</a> | ||
</li> | ||
<li class="table-view-cell media"> | ||
<a rel="external" class="processAction" data-action="restartAll"> | ||
<span class="media-object pull-left icon icon-refresh"></span> | ||
<div class="media-body"> | ||
Restart All | ||
</div> | ||
</a> | ||
</li> | ||
</ul> | ||
<div class="bar bar-standard bar-footer"> | ||
<button class="btn pull-right quit"> | ||
Quit | ||
</button> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<header class="bar bar-nav"> | ||
<a href="/"> | ||
<button class="btn btn-link btn-nav pull-left"> | ||
<span class="icon icon-left-nav"></span> | ||
Back | ||
</button> | ||
</a> | ||
<h1 class="title">{{name}}</h1> | ||
</header> | ||
<div class="content"> | ||
<ul class="table-view"> | ||
{{#uptime}}<li class="table-view-cell">Uptime<p>{{uptime}}</li>{{/uptime}} | ||
{{#pid}}<li class="table-view-cell">PID<p>{{pid}}</li>{{/pid}} | ||
{{#state}}<li class="table-view-cell">State<p>{{state}}</li>{{/state}} | ||
{{#cmd}}<li class="table-view-cell">CMD<p>{{cmd}}</li>{{/cmd}} | ||
<li class="table-view-cell table-view-divider">Actions</li> | ||
<li class="table-view-cell media"> | ||
<a rel="external" class="processAction" data-action="start" data-name="{{name}}"> | ||
<span class="media-object pull-left icon icon-play"></span> | ||
<div class="media-body"> | ||
Start | ||
</div> | ||
</a> | ||
</li> | ||
<li class="table-view-cell media"> | ||
<a rel="external" class="processAction" data-action="stop" data-name="{{name}}"> | ||
<span class="media-object pull-left icon icon-stop"></span> | ||
<div class="media-body"> | ||
Stop | ||
</div> | ||
</a> | ||
</li> | ||
<li class="table-view-cell media"> | ||
<a rel="external" class="processAction" data-action="restart" data-name="{{name}}"> | ||
<span class="media-object pull-left icon icon-refresh"></span> | ||
<div class="media-body"> | ||
Restart | ||
</div> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.