mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
19 lines
422 B
Text
19 lines
422 B
Text
extends /templates/base
|
|
|
|
block content
|
|
|
|
h1 Patches
|
|
|
|
table.table.table-striped.table-bordered.table-condensed#patches
|
|
tbody
|
|
each patch in patches
|
|
tr
|
|
td #{patch.target.collection}
|
|
|
|
td
|
|
if patch.url
|
|
a(href=patch.url)= patch.name
|
|
else
|
|
span= patch.target.original
|
|
td #{patch.creatorName}
|
|
td #{patch.commitMessage}
|