app/views/spree/admin/countries/index.html.erb in spree_backend-4.2.0.rc2 vs app/views/spree/admin/countries/index.html.erb in spree_backend-4.2.0.rc3
- old
+ new
@@ -8,22 +8,22 @@
<div class="table-responsive">
<table class="table" id='listing_countries' data-hook>
<thead>
<tr data-hook="tax_header">
<th><%= Spree.t(:country_name) %></th>
- <th><%= Spree.t(:iso3) %></th>
- <th><%= Spree.t(:states_required) %></th>
- <th><%= Spree.t(:zipcode_required) %></th>
+ <th class="text-center"><%= Spree.t(:iso3) %></th>
+ <th class="text-center"><%= Spree.t(:states_required) %></th>
+ <th class="text-center"><%= Spree.t(:zipcode_required) %></th>
<th class="actions"></th>
</tr>
</thead>
<tbody>
<% @countries.each do |country| %>
<tr id="<%= spree_dom_id country %>" data-hook="country_row">
<td><%= country.name %></td>
- <td><%= country.iso3 %></td>
- <td class="text-center"><%= country.states_required? ? Spree.t(:say_yes) : Spree.t(:say_no) %></td>
- <td class="text-center"><%= country.zipcode_required? ? Spree.t(:say_yes) : Spree.t(:say_no) %></td>
+ <td class="text-center"><%= country.iso3 %></td>
+ <td class="text-center"><%= active_badge(country.states_required?) %></td>
+ <td class="text-center"><%= active_badge(country.zipcode_required?) %></td>
<td class="actions actions-2 text-right">
<%= link_to_edit(country, no_text: true) if can? :edit, country %>
<%= link_to_delete(country, no_text: true) if can? :delete, country %>
</td>
</tr>