forked from distribworks/dkron
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Victor Castell
committed
Jun 14, 2015
1 parent
ff8ac0c
commit dd00de0
Showing
6 changed files
with
36 additions
and
161 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 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 |
---|---|---|
@@ -1,10 +1,20 @@ | ||
{{define "content"}} | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="jumbotron"> | ||
<h1>Hello, World!</h1> | ||
<p>Welcome to your new Go web project.</p> | ||
</div> | ||
</div> | ||
|
||
<table class="table table-striped"> | ||
<tr> | ||
<th>Job</th> | ||
<th>Last</th> | ||
</tr> | ||
{{ range $job := .Jobs }} | ||
<tr> | ||
<td>{{ $job.Name }}</td> | ||
<td>{{ $job.LastSuccess }}</td> | ||
<td>{{ if isSuccess }}Success{{ end }}</td> | ||
</tr> | ||
{{ end }} | ||
</table> | ||
</div> | ||
{{end}} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.