66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
Plaintext
|
<%# 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" %>
|
||
|
<%# end %>
|
||
|
<style type="text/css">
|
||
|
.header-title{
|
||
|
text-align: center;
|
||
|
}
|
||
|
hr{
|
||
|
border-top: 1px solid #5c5c5c;
|
||
|
}
|
||
|
hr.dotted{
|
||
|
border-top: 1px dotted #5c5c5c;
|
||
|
}
|
||
|
.bootstrap-datetimepicker-widget ul{
|
||
|
list-style: none;
|
||
|
padding: 10px 25px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
.bootstrap-datetimepicker-widget ul td,th{
|
||
|
cursor: pointer;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.bootstrap-datetimepicker-widget ul td.old, td.new{
|
||
|
color: #cecece;
|
||
|
}
|
||
|
.bootstrap-datetimepicker-widget ul td:hover,th:hover{
|
||
|
background-color: #5c5c5c;
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
.bootstrap-datetimepicker-widget span.month{
|
||
|
width: 50px;
|
||
|
}
|
||
|
|
||
|
.default_picker span.add-on{
|
||
|
padding: 3px;
|
||
|
margin-left: 5px;
|
||
|
cursor: pointer;
|
||
|
height: 20px;
|
||
|
width: 20px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|
||
|
<h3 class="header-title"><%= @experience.company_name %> - <%= @experience.job_title %></h3>
|
||
|
<hr>
|
||
|
<%= form_for @experience, :url => "/recruit/#{@experience.id.to_s}/update_exmployee_experience", :html => {:class => "form-horizontal"} do |f| %>
|
||
|
<%= render :partial => "employee_experience_form", locals: {f: f} %>
|
||
|
<div class="form-group">
|
||
|
<div class="col-sm-offset-2 col-sm-10">
|
||
|
<%= f.submit "Save", :class =>"btn btn-primary" %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
|
||
|
|
||
|
|