mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 10:06:08 -05:00
17 lines
468 B
Text
17 lines
468 B
Text
.jumbotron
|
|
.button.close(type="button", aria-hidden="true") ×
|
|
h1
|
|
span.spr= level.get('name')
|
|
a(href="/editor/level/#{level.get('slug')}", target="_blank") (edit)
|
|
p= level.get('description')
|
|
|
|
h2 TODO: actually put useful stuff in here
|
|
|
|
if level.get('tasks')
|
|
.tasks
|
|
h3 Tasks (read only)
|
|
ul.list-unstyled
|
|
for task in level.get('tasks')
|
|
li
|
|
input(type='checkbox', checked=task.complete)
|
|
span.spl= task.name
|