% unless defined?(editable) %>
<% editable = true %>
<% end %>
<%= "#{section.name}" %>: <%= section.title %>
<% if editable %>
<% if in_cart? section.crn %>
Remove
<% else %>
Add
<% end %>
<% end %>
<% if section.instructor.name == "TBA" %>
TBA
<% else %>
<%= link_to section.instructor.name, section.instructor %>
<% unless section.instructor.rating.nil? %>
<%= render partial: 'shared/stars', locals: { percent: (section.instructor.rating[0] / 5 * 100).to_i }%>
<% end %>
<% end %>
<%= section.location %>
<%= "#{section.days}, #{section.start_time}-#{section.end_time}" %>
<% unless section.rating_questions.empty? %>
Rating Info (<%= link_to("See all ratings", course_section_url(section))%>)
- Instructor rating: <%= section.teaching_rating %>
- Course rating: <%= section.course_rating %>
<% end %>