183 lines
6.4 KiB
Plaintext
183 lines
6.4 KiB
Plaintext
<% # encoding: utf-8 %>
|
|
<% content_for :page_specific_css do %>
|
|
<%= stylesheet_link_tag "lib/main-forms" %>
|
|
<%= 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/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>
|
|
|
|
<!-- start_date -->
|
|
<div class="control-group">
|
|
<label class="control-label muted"><%= t("personal_diploma.start_date") %></label>
|
|
<div class="controls">
|
|
<%= f.datetime_picker :start_date, :no_label => true, :format=>"yyyy/MM", :placeholder=>"YYYY/MM" %>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- end_date -->
|
|
<div class="control-group">
|
|
<label class="control-label muted"><%= t("personal_diploma.end_date") %></label>
|
|
<div class="controls">
|
|
<%= f.datetime_picker :end_date, :no_label => true, :format=>"yyyy/MM", :placeholder=>"YYYY/MM" %>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- language -->
|
|
<div class="control-group">
|
|
<label class="control-label muted"><%= t("personal_diploma.language") %></label>
|
|
<div class="controls">
|
|
<select id="diploma_language" name="diploma[language]">
|
|
<% @site_in_use_locales.each do |locale| %>
|
|
<option value="<%= locale %>" <%= @diploma.language.eql?(locale.to_s) ? "selected" : ""%>><%= t(locale) %></option>
|
|
<% end %>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- url -->
|
|
<div class="control-group">
|
|
<label class="control-label muted"><%= t("personal_diploma.url") %></label>
|
|
<div class="controls">
|
|
<%= f.text_field :url, :class => "span5" %>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- keywords -->
|
|
<div class="control-group">
|
|
<label class="control-label muted"><%= t("personal_diploma.keywords") %></label>
|
|
<div class="controls">
|
|
<%= f.text_field :keywords, :class => "span5" %>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- note -->
|
|
<div class="control-group">
|
|
<label class="control-label muted"><%= t("personal_diploma.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">
|
|
|
|
<!-- 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 @diploma.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" : '' %>">
|
|
|
|
<!-- school_name-->
|
|
<div class="control-group input-title">
|
|
<label class="control-label muted"><%= t("personal_diploma.school_name") %></label>
|
|
<div class="controls">
|
|
<%= f.fields_for :school_name_translations do |f| %>
|
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_diploma.school_name"), value: (@diploma.school_name_translations[locale] rescue nil) %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- country-->
|
|
<div class="control-group input-title">
|
|
<label class="control-label muted"><%= t("personal_diploma.country") %></label>
|
|
<div class="controls">
|
|
<%= f.fields_for :country_translations do |f| %>
|
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_diploma.country"), value: (@diploma.country_translations[locale] rescue nil) %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- department-->
|
|
<div class="control-group input-title">
|
|
<label class="control-label muted"><%= t("personal_diploma.department") %></label>
|
|
<div class="controls">
|
|
<%= f.fields_for :department_translations do |f| %>
|
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_diploma.department"), value: (@diploma.department_translations[locale] rescue nil) %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- degree-->
|
|
<div class="control-group input-title">
|
|
<label class="control-label muted"><%= t("personal_diploma.degree") %></label>
|
|
<div class="controls">
|
|
<%= f.fields_for :degree_translations do |f| %>
|
|
<%= f.text_field locale, class: "input-block-level", placeholder: t("personal_diploma.degree"), value: (@diploma.degree_translations[locale] rescue nil) %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</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'), get_go_back, :class=>"btn" %>
|
|
</div> |