% content_for :page_specific_css do %> <%= stylesheet_link_tag "universal_table/universal-table" %> <% end %>
<% case ce.type %>
<% when "text" %>
<%= ce.text %>
<% when "editor" %>
<%= ce.content.html_safe rescue "" %>
<% when "image" %>
|
<% else %>
<% when "date" %>
<%= format_date(ce.date, column.date_format) %>
<% when "period" %>
<% if !ce.period_from.nil? %>
<%= format_date(ce.period_from, column.date_format) %> ~ <%= format_date(ce.period_to, column.date_format) %>
<% end %>
<% end %>
<% if index == 0 %>
<% end %> <% end %> |