2014-11-29 14:39:37 -05:00
|
|
|
extends /templates/core/modal-base
|
2014-03-12 11:03:36 -04:00
|
|
|
|
|
|
|
block modal-header-content
|
|
|
|
if dataList
|
|
|
|
h3
|
|
|
|
span(data-i18n="general.version_history_for") Version History for:
|
|
|
|
|"#{dataList[0].name}"
|
2014-10-21 02:12:00 -04:00
|
|
|
p
|
|
|
|
|Select two changes below to see the difference.
|
|
|
|
|
|
|
|
div.delta-container
|
|
|
|
div.delta-view
|
2014-03-12 11:03:36 -04:00
|
|
|
|
|
|
|
block modal-body-content
|
|
|
|
if dataList
|
2014-04-17 14:22:33 -04:00
|
|
|
table.table.table-condensed
|
2014-03-12 11:03:36 -04:00
|
|
|
tr
|
2014-05-08 13:54:39 -04:00
|
|
|
th
|
2014-06-24 16:41:55 -04:00
|
|
|
th
|
|
|
|
th
|
|
|
|
th
|
2014-03-12 11:03:36 -04:00
|
|
|
th(data-i18n="general.commit_msg") Commit Message
|
|
|
|
for data in dataList
|
|
|
|
tr
|
2014-05-08 13:54:39 -04:00
|
|
|
td
|
|
|
|
input(type="checkbox", value=data._id).select
|
2014-09-02 14:07:58 -04:00
|
|
|
td
|
2014-11-29 17:42:37 -05:00
|
|
|
a(href="/editor/#{page}/#{data._id}") #{data.version.major}.#{data.version.minor}
|
2014-06-24 16:41:55 -04:00
|
|
|
td= moment(data.created).format('l')
|
|
|
|
td= data.creator
|
2014-03-12 11:03:36 -04:00
|
|
|
td #{data.commitMessage}
|
|
|
|
|
2014-03-10 18:17:19 -04:00
|
|
|
block modal-footer-content
|