personal-volunteer/app/views/admin/volunteer_services/_form.html.erb

179 lines
8.1 KiB
Plaintext

<% # encoding: utf-8 %>
<% content_for :page_specific_css do %>
<%= stylesheet_link_tag "lib/main-forms" %>
<%= stylesheet_link_tag "lib/main-list" %>
<%= stylesheet_link_tag "lib/main-form-col2" %>
<% end %>
<% content_for :page_specific_javascript do %>
<%= javascript_include_tag "lib/module-area" %>
<%= javascript_include_tag "lib/bootstrap-datetimepicker.js" %>
<%= javascript_include_tag "lib/bootstrap-typeahead.js" %>
<%= javascript_include_tag "lib/datetimepicker/date.time.picker.js" %>
<%= javascript_include_tag "lib/datetimepicker/datetimepicker" %>
<% 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" : '' %>">
<!-- volunteer_name -->
<div class="control-group input-title">
<label class="control-label muted"><%= t("personal_volunteer.volunteer_name") %></label>
<div class="controls">
<%= f.fields_for :volunteer_name_translations do |f| %>
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_volunteer.volunteer_name"), value: (@volunteer_service.volunteer_name_translations[locale] rescue nil) %>
<% end %>
</div>
</div>
<!-- volunteer_organizer -->
<div class="control-group input-title">
<label class="control-label muted"><%= t("personal_volunteer.volunteer_organizer") %></label>
<div class="controls">
<%= f.fields_for :volunteer_organizer_translations do |f| %>
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_volunteer.volunteer_organizer"), value: (@volunteer_service.volunteer_organizer_translations[locale] rescue nil) %>
<% end %>
</div>
</div>
<!-- volunteer_area -->
<div class="control-group input-title">
<label class="control-label muted"><%= t("personal_volunteer.volunteer_area") %></label>
<div class="controls">
<%= f.fields_for :volunteer_area_translations do |f| %>
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_volunteer.volunteer_area"), value: (@volunteer_service.volunteer_area_translations[locale] rescue nil) %>
<% end %>
</div>
</div>
<!-- volunteer_type -->
<div class="control-group input-title">
<label class="control-label muted"><%= t("personal_volunteer.volunteer_type") %></label>
<div class="controls">
<%= f.fields_for :volunteer_type_translations do |f| %>
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_volunteer.volunteer_type"), value: (@volunteer_service.volunteer_type_translations[locale] rescue nil) %>
<% end %>
</div>
</div>
<!-- participation_status -->
<div class="control-group input-title">
<label class="control-label muted"><%= t("personal_volunteer.participation_status") %></label>
<div class="controls">
<%= f.fields_for :participation_status_translations do |f| %>
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_volunteer.participation_status"), value: (@volunteer_service.participation_status_translations[locale] rescue nil) %>
<% end %>
</div>
</div>
</div>
<% end %>
</div>
<!-- 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">
<% if !@member.nil? %>
<div class="control-group big-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>
<% end %>
<!-- year -->
<div class="control-group">
<label class="control-label muted"><%= t("personal_volunteer.year") %></label>
<div class="controls">
<%= select_year((@volunteer_service.year ? @volunteer_service.year.to_i : DateTime.now.year), {:start_year => (DateTime.now.year+5), :end_year => 1930}, {:name => 'volunteer_service[year]',:class => 'span1'} ) %>
</div>
</div>
<!-- volunteer_start_date -->
<div class="control-group">
<label class="control-label muted"><%= t("personal_volunteer.volunteer_start_date") %></label>
<div class="controls">
<%= f.datetime_picker :volunteer_start_date, :no_label => true,:format=>"yyyy/MM/dd", :placeholder=>"YYYY/MM/DD", :value => @volunteer_service.volunteer_end_date, :new_record => @volunteer_service.new_record? %>
</div>
</div>
<!-- volunteer_end_date -->
<div class="control-group">
<label class="control-label muted"><%= t("personal_volunteer.volunteer_end_date") %></label>
<div class="controls">
<%= f.datetime_picker :volunteer_end_date, :no_label => true,:format=>"yyyy/MM/dd", :placeholder=>"YYYY/MM/DD", :value => @volunteer_service.volunteer_end_date, :new_record => @volunteer_service.new_record? %>
</div>
</div>
<!-- note -->
<div class="control-group big-group">
<label class="control-label muted"><%= t("personal_volunteer.note") %></label>
<div class="controls">
<%= f.text_area :note, rows: 2, class: "ckeditor input-block-level" %>
</div>
</div>
</div>
<!-- Status Module -->
<div class="tab-pane fade" id="status">
<!-- 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 @volunteer_service.is_hidden? %>">
<%= f.check_box :is_hidden %> <%= t(:hide) %>
</label>
</div>
</div>
</div>
</div>
</div>
<!-- Form Actions -->
<div class="form-actions">
<input type="hidden" name="referer_url" value="<%= request.referer %>">
<%= f.submit t('submit'), class: 'btn btn-primary' %>
<%= link_to t('cancel'), get_go_back, :class=>"btn" %>
</div>