Skip to content
Snippets Groups Projects
Unverified Commit 74aadbb6 authored by Felix Eckhofer's avatar Felix Eckhofer :man_dancing:
Browse files

Fix links in assignments view

parent dedae986
No related branches found
Tags 5.4.0
No related merge requests found
......@@ -18,7 +18,7 @@ class SessionsController < ApplicationController
end
def show
@conference = Conference.find_by(slug: params[:slug])
@conference = Conference.find_by(slug: params[:conference_slug])
@session = Session.includes(:stage).find_by(conference: @conference, ref_id: params[:ref_id])
@users = User.all
end
......
......@@ -13,7 +13,7 @@
<% assignments_on_date.each do |assignment| %>
<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>:
<%= 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| %>
<%= render partial: 'application/user_avatar', locals: { user: other_user } %>
<% end %></small>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment