<%= t(:category) %>
<%= select_category(f, @module_app) %>
<%= t(:start_date) %>
<%= f.datetime_picker :postdate, :no_label => true, :new_record => @bulletin.new_record?, :data=>{"picker-type" => "range", "range" => "start"} %>
<%= t(:end_date) %>
<%= f.datetime_picker :deadline, :no_label => true, :new_record => @bulletin.new_record?, :data=>{"picker-type" => "range", "range" => "end"} %>
<%= f.label :is_external_link, t("announcement.is_external_link"), :class => "control-label muted" %>
<%= f.check_box :is_external_link %>
<%= f.label :external_link, t("announcement.external_link"), :class => "control-label muted" %>
<%= f.text_field :external_link %>
<%= t("announcement.external_link_hint") %>
<%= f.label :display_subtitle, t("announcement.display_subtitle"), :class => "control-label muted" %>
<%= f.check_box :display_subtitle %>
<%= f.label :display_img, t("announcement.display_img"), :class => "control-label muted" %>
<%= f.check_box :display_img %>
<% if defined? Calendar %>
<%= t('announcement.add_to_calendar') %>
<%= f.check_box :add_to_calendar,onchange: 'trigger_on_add_calendar(this)' %>
>
<%= t('calendar.calendar') %>
<%= f.select :calendar_type_id, @calendar_categories.collect{|t| [ t.title, t.id ]} %>
<%= t(:start_date) %>
<%= t('announcement.blank_to_set') %>
<%= f.datetime_picker :calendar_start_date, :new_record => @bulletin.new_record?, :no_label => true, :data=>{"picker-type" => "range", "range" => "start"} %>
<%= t(:end_date) %>
<%= t('announcement.blank_to_set') %>
<%= f.datetime_picker :calendar_end_date, :new_record => @bulletin.new_record?, :no_label => true, :data=>{"picker-type" => "range", "range" => "end"} %>
<%= t('calendar.all_day') %>
<%= f.check_box :calendar_all_day %>
Select Read More Page :
<%= f.select :page_id,[["----- Select a page -----",nil]]+@module_pages %>
<%= f.hidden_field :event_id %>
<% end %>
<% if((!AnnouncementSetting.first.only_manager_can_edit_status) || (AnnouncementSetting.first.only_manager_can_edit_status && (@current_user.is_admin? || @current_user.is_manager?(@module_app))) ) %>
<%= t(:status) %>
<% if !(@reach_limit.include?('is_top') && @bulletin.is_top != true) || current_user.is_admin? %>
<%= f.check_box :is_top %> <%= t(:top) %>
<% else %>
<%= t(:top) %>
<% end %>
<% if !(@reach_limit.include?('is_hot') && @bulletin.is_hot != true) || current_user.is_admin? %>
<%= f.check_box :is_hot %> <%= t(:hot) %>
<% else %>
<%= t(:hot) %>
<% end %>
<%= f.check_box :is_hidden %> <%= t(:hide) %>
<% if !@bulletin.is_top? && !AnnouncementSetting.check_limit_for_user((@bulletin.new_record? ? current_user.id : @bulletin.create_user_id)) %>
Top limit has been reached. The bulletin wont be marked as top even if you click on it.
<% end %>
" data-for="is_top">
Top end time
<%= f.datetime_picker :top_end_date, :no_label => true, :new_record => @bulletin.new_record? %>
<%= t('announcement.open_comment')%>
<%= f.check_box :open_comment %><%= t('announcement.open') %>
<% end %>
<%= t(:tags) %>
<%= select_tags(f, @module_app) %>
<%= t(:image) %>
<% if @bulletin.image.file %>
<%= image_tag @bulletin.image %>
<% else %>
<% end %>
<%= t(:select_image) %>
<%= t(:change) %>
<%= f.file_field :image %>
<%= t(:cancel) %>
<%= f.check_box :remove_image %><%= t(:remove) %>
<% @site_in_use_locales.each do |locale| %>
<%= f.fields_for :image_description_translations do |f| %>
<%= t(:description) + " (#{t(locale.to_s)})" %>
<%= f.text_field locale, value: (@bulletin.image_description_translations[locale.to_s] rescue nil) %>
<% end %>
<% end %>
<% if @bulletin && !@bulletin.bulletin_carousel_images.blank? %>
<% @bulletin.bulletin_carousel_images.each_with_index do |bulletin_carousel_image, i| %>
<%= f.fields_for :bulletin_carousel_images, bulletin_carousel_image do |f| %>
<%= render :partial => 'form_image', :object => bulletin_carousel_image, :locals => {:f => f, :i => i} %>
<% end %>
<% end %>
<% end %>
<%= hidden_field_tag 'bulletin_carousel_image_count', @bulletin.bulletin_carousel_images.count %>
<%= t(:add) %>