{{template "base" .}} {{define "title"}}Deployments - {{.App.Name}} - upaas{{end}} {{define "content"}} {{template "nav" .}}
Back to {{.App.Name}}

Deployment History

{{if .Deployments}}
{{range .Deployments}}
{{.StartedAt.Format "2006-01-02 15:04:05"}} {{if .FinishedAt.Valid}} - {{.FinishedAt.Time.Format "15:04:05"}} {{end}}
{{if eq .Status "success"}} Success {{else if eq .Status "failed"}} Failed {{else if eq .Status "building"}} Building {{else if eq .Status "deploying"}} Deploying {{else}} {{.Status}} {{end}}
{{if .CommitSHA.Valid}}
Commit: {{.CommitSHA.String}}
{{end}} {{if .ImageID.Valid}}
Image: {{slice .ImageID.String 0 24}}...
{{end}} {{if .ContainerID.Valid}}
Container: {{slice .ContainerID.String 0 12}}
{{end}}
{{if .Logs.Valid}}
View Logs
{{.Logs.String}}
{{end}}
{{end}}
{{else}}

No deployments yet

Deploy your application to see the deployment history here.

{{end}}
{{end}}