tabletop-companion/app/views/tables/index.html.erb

12 lines
217 B
Plaintext

<% content_for :title, t(".tables") %>
<h2><%= t(".tables") %></h2>
<%= link_to t(".new_table"), new_table_path %>
<% if @tables.any? %>
<%= render @tables %>
<% else %>
<p><%= t(".no_tables") %></p>
<% end %>