1
0
Fork 0
dokkan-data-rails/app/views/admin/versions/_list.html.slim

17 lines
411 B
Text
Raw Normal View History

.row
.col-md-12
table.table.table-striped.table-hover
thead
tr
th ID
th Event
th Date
th Modified By
tbody
- versions.each do |version|
tr
td= link_to version.id, admin_version_path(version)
td= version.event
td= version.created_at
td= User.find(version.version_author).nickname