mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
20 lines
579 B
Text
20 lines
579 B
Text
|
extends /templates/base
|
||
|
|
||
|
block content
|
||
|
if dataList
|
||
|
h3(data-i18n="general.version_history_for") Version History for: "#{dataList[0].name}"
|
||
|
|
||
|
table.table
|
||
|
tr
|
||
|
th(data-i18n="general.name") Name
|
||
|
th(data-i18n="general.version") Version
|
||
|
th(data-i18n="general.commit_msg") Commit Message
|
||
|
|
||
|
for data in dataList
|
||
|
tr
|
||
|
td
|
||
|
a(href="/editor/#{page}/#{data.slug || data._id}")
|
||
|
| #{data.name}
|
||
|
td #{data.version.major}.#{data.version.minor}
|
||
|
td #{data.commitMessage}
|