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

23 lines
888 B
Plaintext
Raw Normal View History

2014-07-02 06:25:50 +00:00
<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>
2015-01-09 07:43:19 +00:00
<th class="span1"><%= t('users.name') %></th>
2014-07-02 06:25:50 +00:00
</tr>
</thead>
<tbody id="tbody_experiences" class="sort-holder">
2014-07-18 07:02:35 +00:00
<%= render 'experience' %>
2014-07-02 06:25:50 +00:00
</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">
2014-07-18 07:02:35 +00:00
<%= content_tag :div, paginate(@experiences), class: "pagination pagination-centered" %>
2014-07-02 06:25:50 +00:00
</div>
</div>