237 lines
9.7 KiB
Plaintext
237 lines
9.7 KiB
Plaintext
|
<% # 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" %>
|
||
|
<style type="text/css">
|
||
|
.ui-helper-hidden-accessible{
|
||
|
display: none;
|
||
|
}
|
||
|
</style>
|
||
|
<% 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">
|
||
|
<!-- 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 %>
|
||
|
<li class="pull-right">
|
||
|
<%= copy_to_all_language_button(".language-nav", ".language-area") %>
|
||
|
</li>
|
||
|
</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" : '' %>">
|
||
|
<!-- activity_name -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.activity_name") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :activity_name_translations do |f| %>
|
||
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_activity.activity_name"), value: (@activity.activity_name_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- work_title -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.work_title") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :work_title_translations do |f| %>
|
||
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_activity.work_title"), value: (@activity.work_title_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- activity_organizer -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.activity_organizer") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :activity_organizer_translations do |f| %>
|
||
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_activity.activity_organizer"), value: (@activity.activity_organizer_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- activity_co_organizer -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.activity_co_organizer") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :activity_co_organizer_translations do |f| %>
|
||
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_activity.activity_co_organizer"), value: (@activity.activity_co_organizer_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- region -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.region") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :region_translations do |f| %>
|
||
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_activity.region"), value: (@activity.region_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- road_show -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.road_show") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :road_show_translations do |f| %>
|
||
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_activity.road_show"), value: (@activity.road_show_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- tour_details -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.tour_details") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :tour_details_translations do |f| %>
|
||
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_activity.tour_details"), value: (@activity.tour_details_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- award_name -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.award_name") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :award_name_translations do |f| %>
|
||
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_activity.award_name"), value: (@activity.award_name_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- awarding_unit -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.awarding_unit") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :awarding_unit_translations do |f| %>
|
||
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_activity.awarding_unit"), value: (@activity.awarding_unit_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- authors_type -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.authors_type") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :authors_type_translations do |f| %>
|
||
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_activity.authors_type"), value: (@activity.authors_type_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- authors -->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t("personal_activity.authors") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.fields_for :authors_translations do |f| %>
|
||
|
<%= f.text_area locale, class: "input-block-level ckeditor", placeholder: t("personal_activity.authors"), value: (@activity.authors_translations[locale] rescue nil) %>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
<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">
|
||
|
|
||
|
<% if !@member.nil? %>
|
||
|
|
||
|
<div class="control-group big-group">
|
||
|
<label class="control-label muted"><%= t("personal_activity.author_name_translation") %></label>
|
||
|
<div class="controls">
|
||
|
<%= @member.name rescue ''%>
|
||
|
<%= 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_activity.member_profile") %></label>
|
||
|
<div class="controls">
|
||
|
<% members = !@activity.member_profile_id.nil? ? MemberProfile.where(:id.in=>Array(@activity.member_profile_id)).to_a : [] %>
|
||
|
<%= render partial: 'admin/member_selects/email_selection_box', locals: {field: 'activity[member_profile_id][]', email_members: members,index:'0',select_name:'member_profile_id'} %>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<% end %>
|
||
|
<!-- year -->
|
||
|
<div class="control-group">
|
||
|
<label class="control-label muted"><%= t("personal_activity.year") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.datetime_picker "year",:format => "yyyy", :no_label => true, :new_record => @activity.new_record? %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- publish_date -->
|
||
|
<div class="control-group">
|
||
|
<label class="control-label muted"><%= t("personal_activity.publish_date") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.datetime_picker "publish_date",:format => "yyyy/MM/dd", :no_label => true, :new_record => @activity.new_record? %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- start_date -->
|
||
|
<div class="control-group">
|
||
|
<label class="control-label muted"><%= t("personal_activity.start_date") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.datetime_picker "start_date",:format => "yyyy/MM/dd", :no_label => true, :new_record => @activity.new_record? %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- end_date -->
|
||
|
<div class="control-group">
|
||
|
<label class="control-label muted"><%= t("personal_activity.end_date") %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.datetime_picker "end_date",:format => "yyyy/MM/dd", :no_label => true, :new_record => @activity.new_record? %>
|
||
|
</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 @activity.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? %>
|
||
|
<input type="hidden" name="referer_url" value="<%= request.referer %>">
|
||
|
<%= f.submit t('submit'), class: 'btn btn-primary' %>
|
||
|
<%= link_to t('cancel'), request.referer, :class=>"btn" %>
|
||
|
</div>
|
||
|
<script type="text/javascript">
|
||
|
$(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>
|