portal-template/app/views/admin/portal_template/index.html.erb

22 lines
868 B
Plaintext

<table class="table main-list">
<thead>
<tr>
<th class="span3"><%= t('date_') %></th>
<th class="span3"><%= t('portal_template.offer_title') %></th>
<th class="span1"><%= t('users.name') %></th>
</tr>
</thead>
<tbody id="tbody_offers" class="sort-holder">
<%= render 'offer' %>
</tbody>
</table>
<div class="bottomnav clearfix">
<div class="action pull-right">
<%#= link_to content_tag(:i, nil, :class => 'icon-plus icon-white') + t(:new_), new_admin_portal_template_path, :class => 'btn btn-primary' %>
<%= link_to content_tag(:i, nil, :class => 'icon-cog icon-white') + t('setting'), admin_portal_template_setting_path, :class => 'btn btn-primary pull-right' %>
</div>
<div class="pagination pagination-centered">
<%= content_tag :div, paginate(@offers), class: "pagination pagination-centered" %>
</div>
</div>