Sha256: cefe1a40d6ec0b771eef980e01b11172dcdbcdd943771f19e2e2685e4dc838d7
Contents?: true
Size: 1.11 KB
Versions: 7
Compression:
Stored size: 1.11 KB
Contents
<% if @bolt_configuration.present? %> <table class="index"> <thead> <tr> <th><%= SolidusBolt::BoltConfiguration.human_attribute_name(:publishable_key) %></th> <th><%= SolidusBolt::BoltConfiguration.human_attribute_name(:environment) %></th> <th><%= SolidusBolt::BoltConfiguration.human_attribute_name(:created_at) %></th> <th><%= SolidusBolt::BoltConfiguration.human_attribute_name(:updated_at) %></th> <th class="actions"></th> </tr> </thead> <tbody> <tr> <td><%= @bolt_configuration.publishable_key %></td> <td><%= @bolt_configuration.environment %></td> <td> <%= @bolt_configuration.created_at.to_s(:long) %> </td> <td> <%= @bolt_configuration.updated_at.to_s(:long) %> </td> <td class="actions"> <% if can?(:edit, @bolt_configuration) %> <%= link_to edit_btn, edit_admin_bolt_path, class: 'btn btn-primary' %> <% end %> </td> </tr> </tbody> </table> <% else %> <p> <%= t('spree.admin.bolt.configuration_not_found') %> </p> <% end %>
Version data entries
7 entries across 7 versions & 1 rubygems