mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 08:38:09 -05:00
20 lines
466 B
Text
20 lines
466 B
Text
|
extends /templates/base
|
||
|
|
||
|
block content
|
||
|
|
||
|
h1(data-i18n="resources.patches") 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}
|
||
|
|