some more invalid data...

This commit is contained in:
Paul Liverman III 2018-03-16 17:02:24 -07:00
parent 203a276cdf
commit 47869e2047

View File

@ -6,17 +6,19 @@ class extends Widget
script src: "/static/index.js"
p "API Keys:"
ul ->
for key in *@keys
li key.uuid
if @keys
for key in *@keys
li key.uuid
-- li ->
-- a onclick: "new_key()"
p "Tasks:"
ul ->
for task in *@tasks
li ->
input type: "checkbox", id: "task-#{task.id}", onchange: "check(#{task.id})", checked: task.done
text " #{task.text}"
if @tasks
for task in *@tasks
li ->
input type: "checkbox", id: "task-#{task.id}", onchange: "check(#{task.id})", checked: task.done
text " #{task.text}"
li ->
form {
onsubmit: "new()"