personal-project/app/views/admin/projects/index.html.erb

23 lines
892 B
Plaintext
Raw Normal View History

2014-07-04 06:14:37 +00:00
<table class="table main-list">
<thead>
<tr>
<th class="span2"><%= t('personal_project.period') %></th>
<th class="span5"><%= t('personal_project.project_title') %></th>
<th class="span1"><%= t('personal_project.job_title') %></th>
<th class="span1"><%= t('personal_project.participator') %></th>
<th class="span1"><%= t('personal_project.unit') %></th>
<th class="span1"><%= t('users.name') %></th>
</tr>
</thead>
<tbody id="tbody_projects" class="sort-holder">
<%= render :partial => 'project', :collection => @projects %>
</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_project_setting_path, :class => 'btn btn-primary pull-right' %>
</div>
<div class="pagination pagination-centered">
</div>
</div>