Change news subtitle to textarea, no tinymce
This commit is contained in:
parent
71021b8c69
commit
73e48aebc6
|
@ -355,5 +355,17 @@ namespace :migrate do
|
|||
p 'End Site'
|
||||
|
||||
end
|
||||
|
||||
|
||||
task :news_p => :environment do
|
||||
news_bulletins = NewsBulletin.admin_manager_all rescue nil
|
||||
i = 1
|
||||
news_bulletins.each do |news|
|
||||
p "#{i}/#{news_bulletins.size} - #{news.id}"
|
||||
news.subtitle.gsub!(/^\<p\>/, '').gsub!(/\<\/p\>$/, '') rescue nil
|
||||
p news.save(:validate => false) if news.changed?
|
||||
i += 1
|
||||
end if news_bulletins
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -163,7 +163,7 @@
|
|||
<%= f.label :subtitle, t('news.news_bulletin.subtitle') %>
|
||||
<%= f.fields_for :subtitle_translations do |f| %>
|
||||
<%= I18nVariable.from_locale(locale) %>
|
||||
<%= f.text_area locale, :style=>"width:100%", :class => 'tinymce_textarea', :value => (@news_bulletin.subtitle_translations[locale] rescue nil) %>
|
||||
<%= f.text_area locale, :style=>"width:100%", :value => (@news_bulletin.subtitle_translations[locale] rescue nil) %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<li>
|
||||
<div class="news_img"><%= link_to image_tag(post.image.url, :size => "290x130"), panel_news_front_end_news_bulletin_path(post, :category_id => post.news_bulletin_category_id) %></div>
|
||||
<h3 class="h3 news_title"><%= link_to post.title, panel_news_front_end_news_bulletin_path(post, :category_id => post.news_bulletin_category_id) %></h3>
|
||||
<p class="news_wrap"><%= truncate((post.subtitle rescue '') ,:length => 200).html_safe %></p>
|
||||
<p class="news_wrap"><%= truncate((post.subtitle rescue '') ,:length => 200) %></p>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
|
|
Loading…
Reference in New Issue