personal-experience/app/views/admin/experiences/index.html.erb

21 lines
784 B
Plaintext

<table class="table main-list">
<thead>
<tr>
<th class="span3"><%= t('date_') %></th>
<th class="span3"><%= t('personal_experience.organizationt_title') %></th>
<th class="span3"><%= t('personal_experience.department') %></th>
<th class="span3"><%= t('personal_experience.job_title') %></th>
</tr>
</thead>
<tbody id="tbody_experiences" class="sort-holder">
<%= render :partial => 'experience', :collection => @experiences %>
</tbody>
</table>
<div class="bottomnav clearfix">
<div class="action pull-right">
<%= link_to content_tag(:i, nil, :class => 'icon-cog icon-white') + t('setting'), admin_experience_setting_path, :class => 'btn btn-primary pull-right' %>
</div>
<div class="pagination pagination-centered">
</div>
</div>