mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 11:55:09 +00:00
34 lines
602 B
Plaintext
34 lines
602 B
Plaintext
if this.state.build
|
|
h2
|
|
span Build #
|
|
span= this.state.build.number
|
|
|
|
if this.state.build.startDate
|
|
div
|
|
| Started at
|
|
if this.state.build.startDate
|
|
DateTime(date=new Date(this.state.build.startDate))
|
|
else
|
|
| -
|
|
else
|
|
div
|
|
| Queued at
|
|
if this.state.build.createDate
|
|
DateTime(date=new Date(this.state.build.createDate))
|
|
else
|
|
| -
|
|
|
|
div
|
|
| Builded at
|
|
if this.state.build.endDate
|
|
DateTime(date=new Date(this.state.build.endDate))
|
|
else
|
|
| -
|
|
|
|
div
|
|
if this.state.build.error
|
|
| Error:
|
|
span= this.state.build.error
|
|
|
|
Terminal(build=this.state.build.id)
|