13 lines
399 B
Plaintext
13 lines
399 B
Plaintext
<%= stylesheet_link_tag "http://"+ActionMailer::Base.default_url_options[:host].to_s + "/assets/themes/blue2/application.css", :media=>"all" %>
|
|
|
|
<% @calentries.each do |ce| %>
|
|
|
|
<% if can?(:show , ce.object) %>
|
|
<hr/>
|
|
<%= render partial: "calentries/mail", object: ce %>
|
|
<%= render partial: "neuigkeiten/mail", object: ce.object if ce.object.kind_of?(Neuigkeit)%>
|
|
<% end %>
|
|
<hr/>
|
|
<% end %>
|
|
|