Skip to content
Snippets Groups Projects
Unverified Commit e890c810 authored by tribut's avatar tribut :man_dancing:
Browse files

Fix more links in another assignments view

Cf. 74aadbb6
parent 4be6a40d
Branches
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<% assignments_on_date.each do |assignment| %> <% assignments_on_date.each do |assignment| %>
<li class="<%= assignment.session.starts_at < now ? "past" : "future" %>"> <li class="<%= assignment.session.starts_at < now ? "past" : "future" %>">
<span class="tabular-nums"><%= assignment.session.starts_at.strftime('%H:%M') %> &ndash; <%= assignment.session.ends_at.strftime('%H:%M') %></span>: <span class="tabular-nums"><%= assignment.session.starts_at.strftime('%H:%M') %> &ndash; <%= assignment.session.ends_at.strftime('%H:%M') %></span>:
<%= link_to assignment.session.title, assignment.session %> @ <%= assignment.session.stage.name %> <%= link_to assignment.session.title, conference_session_path(assignment.session.conference, assignment.session) %> @ <%= assignment.session.stage.name %>
<small><% assignment.session.assignments.map(&:user).each do |other_user| %> <small><% assignment.session.assignments.map(&:user).each do |other_user| %>
<%= render partial: 'application/user_avatar', locals: { user: other_user } %> <%= render partial: 'application/user_avatar', locals: { user: other_user } %>
<% end %></small> <% end %></small>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment