orbit-survey_b/app/views/panel/survey_b/back_end/periods/index.html.erb

19 lines
661 B
Plaintext

<table class="table main-list">
<thead>
<tr>
<th width="20%"><%= t('survey_b.period_title') %></th>
<th width="20%"><%= t('survey_b.period') %></th>
<th><%= t('survey_b.status') %></th>
</tr>
</thead>
<tbody id="tbody_survey_periods" class="sort-holder">
<%= render :partial => 'period', :collection => @periods %>
</tbody>
</table>
<div class="form-actions form-fixed pagination-right">
<%= link_to t(:add) + t('survey_b.period'), new_panel_survey_b_back_end_period_path, :class => 'btn btn-primary pull-right' %>
<div id="survey_periods_pagination" class="paginationFixed">
<%= paginate @periods %>
</div>
</div>