otwarchive-symphonyarchive/app/views/wrangling_guidelines/index.html.erb

19 lines
608 B
Text
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
<!--Descriptive page name, messages and instructions-->
<% if policy(:wrangling).new? %>
<%= render 'admin_index' %>
<% else %>
<h2 class="heading"><%= ts('Wrangling Guidelines') %></h2>
<!--/descriptions-->
<!--main content-->
<div class="admin userstuff">
<% unless @wrangling_guidelines.blank? %>
<h3><%= ts('Wrangling Guideline Sections') %></h3>
<ol role="navigation">
<% for wrangling_guideline in @wrangling_guidelines %>
<li><%= link_to wrangling_guideline.title, wrangling_guideline %></li>
<% end %>
</ol>
<% end %>
</div>
<% end %>