Sha256: 173fb0cbeb7d8daa8bb3b5771c2aa7e57899a353e4e4ebed0fa86d810b1eebf3
Contents?: true
Size: 719 Bytes
Versions: 54
Compression:
Stored size: 719 Bytes
Contents
<% # krikri/institutions/show %> <% content_for :title do %><%= @institution.name %><% end %> <h1><%= @institution.name %></h1> <p><%= @institution.notes %></p> <h2>Harvest Sources</h2> <% if @harvest_sources.count == 0 %> <p>This institution has no harvest sources.</p> <% else %> <ul> <% @harvest_sources.each do |harvest_source| %> <li> <%= link_to harvest_source.name, harvest_source_path(harvest_source) %> </li> <% end %> </ul> <% end %> <%= link_to 'Edit', edit_institution_path(@institution) %> <%= link_to 'New Harvest Source', new_institution_harvest_source_path(@institution) %> <%= link_to 'All Institutions', institutions_path %>
Version data entries
54 entries across 54 versions & 1 rubygems