aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/exports/index.html.erb
blob: b7847b70e24164c6efe84f578a4a85722a649421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<%= title_tag t('.title') %> 
<div class="warning"><%= t('.warning') %> </div> 
<div class="page_info">
  <span class="search"> <%= t("will_paginate.page_entries_info.search") %></span> <%= page_entries_info @exports %>
</div>
<div class="exports paginated_content">
  <%= render :partial => "export", :collection => @exports %>
</div>
<div class="pagination">
  <%= will_paginate @exports, :container => false %>
</div>

<% content_for :sidebar do %>
<ul class="actions">
  <li><%= link_to t('exports.actions.new'), new_referential_export_path(@referential), :class => "add" %></li> 
</ul>
<% end %>