Sha256: 0269c26515514b44564f44b4e8a628c695b6d67528720ab84310329c2aadcb60

Contents?: true

Size: 833 Bytes

Versions: 8

Compression:

Stored size: 833 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.keys.#{col}") %></th>
	  <% end %>
    </tr>
  </thead>
  <tbody>
    <% object.datastreams.each do |dsid, ds| %>
      <tr>
	    <td>
		  <%= link_to dsid, fcrepo_admin.object_datastream_path(object, ds) %>
		</td>
	    <% unless ds.new? %>
	      <% columns.each do |col| %>
	        <td>
			  <%= format_datastream_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

8 entries across 8 versions & 1 rubygems

Version Path
fcrepo_admin-0.6.0 app/views/fcrepo_admin/datastreams/_datastreams_list.html.erb
fcrepo_admin-0.5.5 app/views/fcrepo_admin/datastreams/_datastreams_list.html.erb
fcrepo_admin-0.5.5.pre app/views/fcrepo_admin/datastreams/_datastreams_list.html.erb
fcrepo_admin-0.5.4 app/views/fcrepo_admin/datastreams/_datastreams_list.html.erb
fcrepo_admin-0.5.3 app/views/fcrepo_admin/datastreams/_datastreams_list.html.erb
fcrepo_admin-0.5.2 app/views/fcrepo_admin/datastreams/_datastreams_list.html.erb
fcrepo_admin-0.5.1 app/views/fcrepo_admin/datastreams/_datastreams_list.html.erb
fcrepo_admin-0.5.0 app/views/fcrepo_admin/datastreams/_datastreams_list.html.erb