Fix [app_name]_category_with_title and change announcement init
This commit is contained in:
parent
9cc1e95cb1
commit
ba7ac5d954
|
@ -64,7 +64,7 @@ class Bulletin
|
|||
end
|
||||
|
||||
def bulletin_category_with_title
|
||||
self.bulletin_category.title
|
||||
self.category.title
|
||||
end
|
||||
|
||||
def share_item
|
||||
|
|
|
@ -15,6 +15,7 @@ en:
|
|||
default_widget:
|
||||
bulletin_category_with_title: Bulletin Category with Title
|
||||
postdate: Post Date
|
||||
subtitle: Subtitle
|
||||
title: Title
|
||||
editing_announcement: Edit Announcement
|
||||
editing_announcement_category: Edit Category
|
||||
|
|
|
@ -15,6 +15,7 @@ zh_tw:
|
|||
default_widget:
|
||||
bulletin_category_with_title: 公告類別及標題
|
||||
postdate: 張貼日期
|
||||
subtitle: 副標題
|
||||
title: 標題
|
||||
editing_announcement: 編輯類別
|
||||
editing_announcement_category: 編輯類別
|
||||
|
|
|
@ -33,11 +33,12 @@ module Announcement
|
|||
widgets do
|
||||
default_widget do
|
||||
query 'Bulletin.any_of( {deadline: nil,:postdate.lte => Time.now} , {:deadline.gte => Time.now,:postdate.lte => Time.now} )'
|
||||
enable ["typeA","typeC"]
|
||||
enable ["typeA", "typeB_style3", "typeC"]
|
||||
image :image
|
||||
field :postdate
|
||||
link_field :title,{:method => 'panel_announcement_front_end_bulletin_path',:args=>:self}
|
||||
link_field :bulletin_category_with_title,{:method => 'panel_announcement_front_end_bulletins_path',:args=>{:category_id => [:bulletin_category,:id]}}
|
||||
field :subtitle
|
||||
link_to_more 'panel_announcement_front_end_bulletins_path',:title_i18n=> 'more_plus'
|
||||
end
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ class Qa
|
|||
protected
|
||||
|
||||
def qa_category_with_title
|
||||
self.qa_category.title
|
||||
self.category.title
|
||||
end
|
||||
|
||||
def clean_values
|
||||
|
|
Reference in New Issue