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" %>
|
|
|
|
<% 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 %>
|
|
|
|
|
|
|
|
<!-- Input Area -->
|
|
|
|
<div class="input-area">
|
|
|
|
|
|
|
|
<!-- Module Tabs -->
|
|
|
|
<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">
|
|
|
|
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_plugins.author") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= @member.name rescue ''%>
|
|
|
|
<%= f.hidden_field :member_profile_id, :value => @member.id %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 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>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- patent_category -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.patent_category") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.select :patent_type_id, @patent_types.collect {|t| [ t.title, t.id ]} %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- publish_date -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.publication_date") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.datetime_picker :publish_date, :no_label => true, :format=>"yyyy/MM" %>
|
|
|
|
</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>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- keywords -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.keywords") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.text_field :keywords %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- language -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.language") %></label>
|
|
|
|
<div class="controls">
|
2014-07-04 07:08:46 +00:00
|
|
|
<%= f.text_field :language ,class: "span5"%>
|
2014-07-04 03:48:33 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- url -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.url") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.text_field :url , :class => "span5" %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- note -->
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label muted"><%= t("personal_patent.note") %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.text_area :note, rows: 2, class: "input-block-level" %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</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>
|
|
|
|
|
|
|
|
<!-- 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 %>
|
|
|
|
</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>
|
|
|
|
|
2014-07-04 07:08:46 +00:00
|
|
|
<!-- 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>
|
|
|
|
|
2014-07-04 03:48:33 +00:00
|
|
|
<!-- 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>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Form Actions -->
|
|
|
|
<div class="form-actions">
|
|
|
|
<%= 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'), get_go_back, :class=>"btn" %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% content_for :page_specific_javascript do %>
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('.main-forms .add-on').tooltip();
|
|
|
|
$(document).on('click', '#add_file', function(){
|
|
|
|
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');
|
|
|
|
});
|
|
|
|
formTip();
|
|
|
|
});
|
|
|
|
$(document).on('click', '.delete_file', function(){
|
|
|
|
$(this).parents('.input-prepend').remove();
|
|
|
|
});
|
|
|
|
$(document).on('click', '.remove_existing_record', function(){
|
|
|
|
if(confirm("<%= I18n.t(:sure?)%>")){
|
|
|
|
$(this).children('.should_destroy').attr('value', 1);
|
|
|
|
$(this).parents('.start-line').hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<% end %>
|