mirror of
https://github.com/lazuscripts/githook.git
synced 2024-11-18 03:04:23 +00:00
1b342bcabc
tl;dr: I accidentally included history from OTHER repos due to a bug with git subtree or a misunderstanding of it on my part, so I'm wiping everything before this point
11 lines
281 B
Plaintext
11 lines
281 B
Plaintext
import Widget from require "lapis.html"
|
|
|
|
class extends Widget
|
|
content: =>
|
|
h2 "#{@results.json.status\sub(1, 1)\upper!}#{@results.json.status\sub 2}"
|
|
element "table", ->
|
|
tr ->
|
|
for code in *@results.json.exit_codes
|
|
th code
|
|
pre @results.json.log
|