Sha256: ca79c2598c8395f724956c12c86284c97e8ac5851ddc07cb4cb64e7363350b14

Contents?: true

Size: 1.02 KB

Versions: 17

Compression:

Stored size: 1.02 KB

Contents

<%= render :partial => 'spree/admin/shared/configuration_menu' %>

<div class="toolbar" data-hook="toolbar">
  <ul class="actions">
    <li>
      <%= button_link_to t(:new_tracker), new_object_url, :icon => 'add', :id => 'admin_new_tracker_link' %>
    </li>
  </ul>
  <br class="clear" />
</div>

<h1><%= t(:analytics_trackers) %></h1>

<table class="index">
  <thead>
    <tr data-hook="admin_trackers_index_headers">
      <th><%= t(:google_analytics_id) %></th>
      <th><%= t(:environment) %></th>
      <th><%= t(:active) %></th>
      <th><%= t(:action) %></th>
    </tr>
  </thead>
  <tbody>
    <% @trackers.each do |tracker|%>
      <tr id="<%= spree_dom_id tracker %>" data-hook="admin_trackers_index_rows">
        <td><%= tracker.analytics_id %></td>
        <td><%= tracker.environment.to_s.titleize %></td>
        <td><%= tracker.active ? t(:yes) : t(:no) %></td>
        <td>
          <%= link_to_edit tracker %> &nbsp;
          <%= link_to_delete tracker %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
spree_core-1.2.5 app/views/spree/admin/trackers/index.html.erb
spree_core-1.1.6 app/views/spree/admin/trackers/index.html.erb
spree_core-1.1.5 app/views/spree/admin/trackers/index.html.erb
spree_core-1.2.4 app/views/spree/admin/trackers/index.html.erb
spree_core-1.2.3 app/views/spree/admin/trackers/index.html.erb
spree_core-1.2.2 app/views/spree/admin/trackers/index.html.erb
spree_core-1.1.4 app/views/spree/admin/trackers/index.html.erb
spree_core-1.2.0 app/views/spree/admin/trackers/index.html.erb
spree_core-1.2.0.rc2 app/views/spree/admin/trackers/index.html.erb
spree_core-1.2.0.rc1 app/views/spree/admin/trackers/index.html.erb
spree_core-1.1.3 app/views/spree/admin/trackers/index.html.erb
spree_core-1.1.2 app/views/spree/admin/trackers/index.html.erb
spree_core-1.1.2.rc1 app/views/spree/admin/trackers/index.html.erb
spree_core-1.1.1 app/views/spree/admin/trackers/index.html.erb
spree_core-1.1.0 app/views/spree/admin/trackers/index.html.erb
spree_core-1.1.0.rc2 app/views/spree/admin/trackers/index.html.erb
spree_core-1.1.0.rc1 app/views/spree/admin/trackers/index.html.erb