Sha256: e1b9b08a6c20dc16c4829dd5a65292ce1b548d579875583ddfa670fc400053e1
Contents?: true
Size: 822 Bytes
Versions: 1
Compression:
Stored size: 822 Bytes
Contents
<table class="table table-bordered table-condensed table-striped"> <thead> <tr> <th scope="col"><%= t("fcrepo_admin.datastreams.header.id") %></th> <% columns.each do |col| %> <th scope="col"><%= t("fcrepo_admin.datastream.profile.#{col}") %></th> <% end %> </tr> </thead> <tbody> <% object.datastreams.each do |dsid, ds| %> <tr> <td> <%= link_to dsid, fcrepo_admin.object_datastream_path(object, dsid) %> </td> <% unless ds.new? %> <% columns.each do |col| %> <td> <%= format_ds_profile_value ds, col %> </td> <% end %> <% else %> <%= content_tag :td, :colspan => columns.size do %> <em><%= t("fcrepo_admin.datastream.not_persisted") %></em> <% end %> <% end %> </tr> <% end %> </tbody> </table>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fcrepo_admin-0.4.1 | app/views/fcrepo_admin/datastreams/_datastreams_list.html.erb |