2014-07-04 03:48:33 +00:00
|
|
|
<% # 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" %>
|
2015-01-09 07:41:08 +00:00
|
|
|
<%= stylesheet_link_tag "lib/main-form-col2" %>
|
2014-07-04 03:48:33 +00:00
|
|
|
<% end %>
|
|
|
|
<% content_for :page_specific_javascript do %>
|
|
|
|
<%= javascript_include_tag "lib/bootstrap-datetimepicker" %>
|
|
|
|
<%= javascript_include_tag "lib/datetimepicker/datetimepicker.js" %>
|
2014-12-04 07:41:18 +00:00
|
|
|
<%= javascript_include_tag "lib/bootstrap-fileupload" %>
|
2014-07-04 03:48:33 +00:00
|
|
|
<%= javascript_include_tag "lib/file-type" %>
|
|
|
|
<%= javascript_include_tag "lib/module-area" %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<!-- Input Area -->
|
|
|
|
<div class="input-area">
|
|
|
|
|
2015-01-09 07:41:08 +00:00
|
|
|
<!-- Language Tabs -->
|
|
|
|
<div class="nav-name"><strong><%= t(:language) %></strong></div>
|
|
|
|
<ul class="nav nav-pills language-nav">
|
|
|
|
<% @site_in_use_locales.each_with_index do |locale, i| %>
|
|
|
|
<li class="<%= 'active' if i == 0 %>">
|
|
|
|
<a data-toggle="tab" href=".<%= locale %>"><%= t(locale) %></a>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
2015-10-21 08:12:35 +00:00
|
|
|
<li class="pull-right">
|
|
|
|
<%= copy_to_all_language_button(".language-nav", ".language-area") %>
|
|
|
|
</li>
|
2015-01-09 07:41:08 +00:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<!-- Language -->
|
|
|
|
<div class="tab-content language-area">
|
|
|
|
|
|
|
|
<% @site_in_use_locales.each_with_index do |locale, i| %>
|
|
|
|
|
|
|
|
<div class="<%= locale %> tab-pane fade <%= ( i == 0 ) ? "in active" : '' %>">
|
|
|
|
|
|
|
|
<!-- patent_title-->
|
|
|
|
<div class="control-group input-title">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.patent_title") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.fields_for :patent_title_translations do |f| %>
|
|
|
|
<%= f.text_field locale, placeholder: t("personal_patent.patent_title"), value: (@patent.patent_title_translations[locale] rescue nil) %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- patent_country -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.patent_country") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.fields_for :patent_country_translations do |f| %>
|
|
|
|
<%= f.text_field locale, placeholder: t("personal_patent.patent_country"), value: (@patent.patent_country_translations[locale] rescue nil) %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- authors-->
|
|
|
|
<div class="control-group input-title">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.authors") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.fields_for :authors_translations do |f| %>
|
|
|
|
<%= f.text_field locale, placeholder: t("personal_patent.authors"), value: (@patent.authors_translations[locale] rescue nil) %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<!-- File -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t(:file_) %></label>
|
|
|
|
<div class="controls">
|
|
|
|
|
|
|
|
<!-- Exist -->
|
|
|
|
<% if @patent && !@patent.patent_files.blank? %>
|
|
|
|
<div class="exist">
|
|
|
|
<% @patent.patent_files.each_with_index do |patent_file, i| %>
|
|
|
|
<%= f.fields_for :patent_files, patent_file do |f| %>
|
|
|
|
<%= render :partial => 'form_file', :object => patent_file, :locals => {:f => f, :i => i} %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<hr>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<!-- Add -->
|
|
|
|
<div class="add-target">
|
|
|
|
</div>
|
|
|
|
<p class="add-btn">
|
|
|
|
<%= hidden_field_tag 'plugin_file_field_count', @patent.patent_files.count %>
|
|
|
|
<a id="add_file" class="trigger btn btn-small btn-primary"><i class="icons-plus"></i> <%= t(:add) %></a>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2014-12-04 07:41:18 +00:00
|
|
|
<!-- Module Tabs -->
|
2014-07-04 03:48:33 +00:00
|
|
|
<div class="nav-name"><strong><%= t(:module) %></strong></div>
|
|
|
|
<ul class="nav nav-pills module-nav">
|
|
|
|
<li></li>
|
|
|
|
<li class="active">
|
|
|
|
<a href="#basic" data-toggle="tab"><%= t(:basic) %></a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="#status" data-toggle="tab"><%= t(:status) %></a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<!-- Module -->
|
|
|
|
<div class="tab-content module-area">
|
|
|
|
|
|
|
|
<!-- Basic Module -->
|
|
|
|
<div class="tab-pane fade in active" id="basic">
|
2014-12-04 07:41:18 +00:00
|
|
|
|
2015-01-20 06:46:24 +00:00
|
|
|
<% if !@member.nil? %>
|
|
|
|
|
2015-01-09 07:41:08 +00:00
|
|
|
<div class="control-group big-group">
|
2014-07-04 03:48:33 +00:00
|
|
|
<label class="control-label muted"><%= t("personal_plugins.author") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= @member.name rescue ''%>
|
2015-01-20 06:46:24 +00:00
|
|
|
<%= f.hidden_field :member_profile_id, :value => @member.id %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% else %>
|
|
|
|
|
|
|
|
<div class="control-group big-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_plugins.author") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= render partial: 'admin/member_selects/email_selection_box', locals: {field: 'author_members[]', email_members:[]} %>
|
2014-07-04 03:48:33 +00:00
|
|
|
</div>
|
2014-12-04 07:41:18 +00:00
|
|
|
</div>
|
2014-07-04 03:48:33 +00:00
|
|
|
|
2015-01-20 06:46:24 +00:00
|
|
|
<% end %>
|
|
|
|
|
2014-07-04 03:48:33 +00:00
|
|
|
<!-- year -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.year") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= select_year((@patent.year ? @patent.year.to_i : DateTime.now.year), {:start_year => DateTime.now.year, :end_year => 1930}, {:name => 'patent[year]', :class => "span1"} ) %>
|
|
|
|
</div>
|
2014-12-04 07:41:18 +00:00
|
|
|
</div>
|
2014-07-04 03:48:33 +00:00
|
|
|
|
2015-01-09 07:41:08 +00:00
|
|
|
<!-- language -->
|
2014-07-04 03:48:33 +00:00
|
|
|
<div class="control-group">
|
2015-01-09 07:41:08 +00:00
|
|
|
<label class="control-label muted"><%= t("personal_patent.language") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<select id="patent_language" name="patent[language]">
|
|
|
|
<% @site_in_use_locales.each do |locale| %>
|
|
|
|
<option value="<%= locale %>" <%= @patent.language.eql?(locale.to_s) ? "selected" : ""%>><%= t(locale) %></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- patent_category -->
|
|
|
|
<div class="control-group big-group">
|
2014-07-04 03:48:33 +00:00
|
|
|
<label class="control-label muted"><%= t("personal_patent.patent_category") %></label>
|
|
|
|
<div class="controls">
|
2014-07-14 13:30:11 +00:00
|
|
|
<% @patent_types.each do |pt| %>
|
|
|
|
<input type="checkbox" name="patent[patent_type_ids][]" value="<%= pt.id.to_s %>" <%= (@patent.patent_type_ids.include?pt.id) ? "checked=checked" : "" %> /> <%= pt.title %>
|
|
|
|
<% end %>
|
2014-07-04 03:48:33 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- patent_no -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.patent_no") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.text_field :patent_no %>
|
|
|
|
</div>
|
2014-12-04 07:41:18 +00:00
|
|
|
</div>
|
2014-07-04 03:48:33 +00:00
|
|
|
|
2015-01-09 07:41:08 +00:00
|
|
|
<!-- publish_date -->
|
2014-07-04 03:48:33 +00:00
|
|
|
<div class="control-group">
|
2015-01-09 07:41:08 +00:00
|
|
|
<label class="control-label muted"><%= t("personal_patent.publication_date") %></label>
|
2014-07-04 03:48:33 +00:00
|
|
|
<div class="controls">
|
2015-12-02 10:35:15 +00:00
|
|
|
<%= f.datetime_picker :publish_date, :no_label => true, :format=>"yyyy/MM", :value => @patent.publish_date, :new_record => @patent.new_record? %>
|
2014-07-04 03:48:33 +00:00
|
|
|
</div>
|
2014-12-04 07:41:18 +00:00
|
|
|
</div>
|
2014-07-04 03:48:33 +00:00
|
|
|
|
2015-01-09 07:41:08 +00:00
|
|
|
<!-- url -->
|
|
|
|
<div class="control-group big-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.url") %></label>
|
2014-07-04 03:48:33 +00:00
|
|
|
<div class="controls">
|
2015-01-09 07:41:08 +00:00
|
|
|
<%= f.text_field :url , :class => "span5" %>
|
2014-07-04 03:48:33 +00:00
|
|
|
</div>
|
2014-12-04 07:41:18 +00:00
|
|
|
</div>
|
2014-07-04 03:48:33 +00:00
|
|
|
|
2015-01-09 07:41:08 +00:00
|
|
|
<!-- keywords -->
|
|
|
|
<div class="control-group big-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.keywords") %></label>
|
2014-07-04 03:48:33 +00:00
|
|
|
<div class="controls">
|
2015-01-09 07:41:08 +00:00
|
|
|
<%= f.text_field :keywords %>
|
2014-07-04 03:48:33 +00:00
|
|
|
</div>
|
2014-12-04 07:41:18 +00:00
|
|
|
</div>
|
2014-07-04 03:48:33 +00:00
|
|
|
|
|
|
|
<!-- note -->
|
2015-01-09 07:41:08 +00:00
|
|
|
<div class="control-group big-group">
|
2014-07-04 03:48:33 +00:00
|
|
|
<label class="control-label muted"><%= t("personal_patent.note") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.text_area :note, rows: 2, class: "input-block-level" %>
|
|
|
|
</div>
|
2014-12-04 07:41:18 +00:00
|
|
|
</div>
|
2014-07-04 03:48:33 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Status Module -->
|
|
|
|
<div class="tab-pane fade" id="status">
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t(:status) %></label>
|
|
|
|
<div class="controls" data-toggle="buttons-checkbox">
|
|
|
|
<label class="checkbox inline btn <%= 'active' if @patent.is_hidden? %>">
|
|
|
|
<%= f.check_box :is_hidden %> <%= t(:hide) %>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Form Actions -->
|
|
|
|
<div class="form-actions">
|
|
|
|
<%= f.hidden_field :user_id, :value => params[:user_id] if !params[:user_id].blank? %>
|
2014-08-01 04:24:34 +00:00
|
|
|
<input type="hidden" name="referer_url" value="<%= request.referer %>">
|
2014-07-04 03:48:33 +00:00
|
|
|
<%= f.submit t('submit'), class: 'btn btn-primary' %>
|
2014-12-04 07:41:18 +00:00
|
|
|
<%= link_to t('cancel'), get_go_back, :class=>"btn" %>
|
2014-07-04 03:48:33 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
2014-12-04 07:41:18 +00:00
|
|
|
$('.main-forms').find('.add-on').tooltip().end().on('click', '.trigger, .delete_file, .remove_existing_record', function() {
|
|
|
|
if($(this).hasClass('trigger')) {
|
2014-07-04 03:48:33 +00:00
|
|
|
var new_id = $(this).prev().attr('value');
|
|
|
|
var old_id = new RegExp("new_patent_files", "g");
|
|
|
|
var on = $('.language-nav li.active').index();
|
|
|
|
var le = $(this).parent('.add-btn').prev('.add-target').children('.start-line').length;
|
|
|
|
$(this).prev().attr('value', parseInt(new_id) + 1);
|
|
|
|
$(this).parent().siblings('.add-target').append(("<%= escape_javascript(add_attribute 'form_file', f, :patent_files) %>").replace(old_id, new_id));
|
|
|
|
$(this).parent('.add-btn').prev('.add-target').children('.start-line').eq(le).children('.input-append').find('.tab-content').each(function() {
|
|
|
|
$(this).children('.tab-pane').eq(on).addClass('in active').siblings().removeClass('in active');
|
|
|
|
});
|
2014-12-04 07:41:18 +00:00
|
|
|
$('.add-on').tooltip();
|
|
|
|
} else if($(this).hasClass('delete_file')) {
|
2014-07-04 03:48:33 +00:00
|
|
|
$(this).parents('.input-prepend').remove();
|
2014-12-04 07:41:18 +00:00
|
|
|
} else if($(this).hasClass('remove_existing_record')) {
|
2014-07-04 03:48:33 +00:00
|
|
|
if(confirm("<%= I18n.t(:sure?)%>")){
|
|
|
|
$(this).children('.should_destroy').attr('value', 1);
|
|
|
|
$(this).parents('.start-line').hide();
|
|
|
|
}
|
2014-12-04 07:41:18 +00:00
|
|
|
}
|
2014-07-04 03:48:33 +00:00
|
|
|
});
|
2014-12-04 07:41:18 +00:00
|
|
|
</script>
|