<table class="table main-list"> <thead> <tr> <th class="span3"><%= t('personal_honor.year') %></th> <th class="span3"><%= t('personal_honor.award_name') %></th> <th class="span3"><%= t('personal_honor.awarding_unit') %></th> <th class="span3"><%= t('personal_honor.award_winner') %></th> </tr> </thead> <tbody id="tbody_experiences" class="sort-holder"> <%= render 'honor' %> </tbody> </table> <div class="bottomnav clearfix"> <div class="action pull-right"> <div class="dropup upload-button"> <button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown"> <i class="icon-upload-alt icon-white"></i>上傳 <span class="caret"></span> </button> <div class="dropdown-menu upload-box"> <form action="/admin/honors/import_from_excel" method="post" enctype="multipart/form-data"> <%= hidden_field_tag :authenticity_token, form_authenticity_token %> <input type="file" name="import_file" > <button class="btn btn-primary" type="submit"><%= t(:submit) %></button> <a class="" href="/admin/honors/download_excel_format.xlsx">Download excel format</a> </form> </div> </div> <%= link_to content_tag(:i, nil, :class => 'icon-plus icon-white') + t(:new_), new_admin_honor_path, :class => 'btn btn-primary' %> <%= link_to content_tag(:i, nil, :class => 'icon-cog icon-white') + t('setting'), admin_honor_setting_path, :class => 'btn btn-primary pull-right' %> </div> <div class="pagination pagination-centered"> <%= content_tag :div, paginate(@honors), class: "pagination pagination-centered" %> </div> </div> <% if params[:error] == "1" %> <script type="text/javascript"> alert("File cannot be imported. File has more than 500 entries. Please seperate the entries in different files."); window.location.href = "<%= admin_honors_url %>" </script> <% end %>