otwarchive-symphonyarchive/app/views/challenge_assignments/_user_index.html.erb
2026-03-11 22:22:11 +00:00

20 lines
675 B
Text

<!--Descriptive page name, messages and instructions-->
<h2 class="heading"><%= ts("My Assignments") %> <%= @collection ? ts("in %{collection_link}", :collection_link => link_to(@collection.title, @collection)).html_safe : "" %></h2>
<!--/descriptions-->
<!--subnav-->
<!--/subnav-->
<!--main content-->
<% unless @collection %>
<p class="note"><%= ts('Looking for prompts you claimed in a prompt meme? Try') %> <%= link_to ts("My Claims"), user_claims_path(@user) %></p>
<% end %>
<dl class="assignment index group">
<% @challenge_assignments.each do |assignment| %>
<%= render "assignment_blurb", :assignment => assignment %>
<% end %>
</dl>
<!--/content-->