<% # encoding: utf-8 %> <% content_for :page_specific_css do %> <%= stylesheet_link_tag "lib/main-forms" %> <%= stylesheet_link_tag "lib/fileupload" %> <%= stylesheet_link_tag "lib/main-list" %> <%= stylesheet_link_tag "lib/main-form-col2" %> <% end %> <% content_for :page_specific_javascript do %> <%= javascript_include_tag "lib/bootstrap-datetimepicker" %> <%= javascript_include_tag "lib/datetimepicker/datetimepicker.js" %> <%= javascript_include_tag "lib/bootstrap-fileupload" %> <%= javascript_include_tag "lib/file-type" %> <%= javascript_include_tag "lib/module-area" %> <% end %>
<% @site_in_use_locales.each_with_index do |locale, i| %>
">
<%= f.fields_for :title_translations do |f| %> <%= f.text_field locale, class: "input-block-level", placeholder: t("personal_technique.title"), value: (@technique.title_translations[locale] rescue nil) %> <% end %>
<%= f.fields_for :newsletter_translations do |f| %> <%= f.text_field locale, class: "input-block-level", placeholder: t("personal_technique.newsletter"), value: (@technique.newsletter_translations[locale] rescue nil) %> <% end %>
<%= f.fields_for :authors_translations do |f| %> <%= f.text_area locale, class: "input-block-level ckeditor", placeholder: t("personal_technique.authors"), value: (@technique.authors_translations[locale] rescue nil) %> <% end %>
<% end %> <% links_hash = {} [].each do |link| hash = {} hash["html"] = add_attribute("form_link", f, link.pluralize.to_sym) hash["count"] = @technique.send(link.pluralize).count rescue 0 links_hash[link] = hash %>
<% if !@technique.new_record? && hash["count"] > 0 %>
<% @technique.send(link.pluralize).each_with_index do |obj, i| %> <% if !obj.new_record? %> <%= f.fields_for link.pluralize.to_sym, obj do |f| %> <%= render :partial => "form_link", :object => obj, :locals => {:f => f, :i => i} %> <% end %> <% end %> <% end %>
<% end %>

<%= t(:add) %>

<% end %> <% files_hash = {} [].each do |file| hash = {} hash["html"] = add_attribute("form_file", f, file.pluralize.to_sym) hash["count"] = @technique.send(file.pluralize).count rescue 0 files_hash[file] = hash %>
<% if !@technique.new_record? && hash["count"] > 0 %>
<% @technique.send(file.pluralize).each_with_index do |obj, i| %> <% if !obj.new_record? %> <%= f.fields_for file.pluralize.to_sym, obj do |f| %> <%= render :partial => "form_file", :object => obj, :locals => {:f => f, :i => i} %> <% end %> <% end %> <% end %>
<% end %>

<%= t(:add) %>

<% end %>
<% if !@member.nil? %>
<%= @member.name rescue ''%> <%= f.hidden_field :member_profile_id, :value => @member.id %>
<% else %>
<% members = !@technique.member_profile.nil? ? @technique.member_profile.to_a : [] %> <%= render partial: 'admin/member_selects/email_selection_box', locals: {field: 'technique[member_profile_id][]', email_members: members,index:'0',select_name:'member_profile_id'} %>
<% end %>
<%= f.datetime_picker "issue_date",:format => "yyyy/MM", :no_label => true, :new_record => @technique.new_record? %>
<%= f.text_field "vol_no", class: "input-block-level", placeholder: t("personal_technique.vol_no"), value: (@technique.vol_no rescue nil) %>
<%= f.text_field "isbn", class: "input-block-level", placeholder: t("personal_technique.isbn"), value: (@technique.isbn rescue nil) %>
<%= f.text_field "url", class: "input-block-level", placeholder: t("personal_technique.url"), value: (@technique.url rescue nil) %>
<%= f.text_field "keywords", class: "input-block-level", placeholder: t("personal_technique.keywords"), value: (@technique.keywords rescue nil) %>
<%= f.text_area "note", class: "input-block-level ckeditor", placeholder: t("personal_technique.note"), value: (@technique.note rescue nil) %>
<%= f.select :technique_status_id, TechniqueStatus.all.collect {|t| [ t.status, t.id ]}, { include_blank: true } %>
<%= f.hidden_field :user_id, :value => params[:user_id] if !params[:user_id].blank? %> <%= f.submit t('submit'), class: 'btn btn-primary' %> <%= link_to t('cancel'), request.referer, :class=>"btn" %>