Sha256: 53ecfab07492b0521ff6560999fd8ea15f8c0f38974993500223ce27662301fe

Contents?: true

Size: 1.01 KB

Versions: 11

Compression:

Stored size: 1.01 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="<%= 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

11 entries across 11 versions & 1 rubygems

Version Path
spree_core-1.0.7 app/views/spree/admin/trackers/index.html.erb
spree_core-1.0.6 app/views/spree/admin/trackers/index.html.erb
spree_core-1.0.4 app/views/spree/admin/trackers/index.html.erb
spree_core-1.0.3 app/views/spree/admin/trackers/index.html.erb
spree_core-1.0.2 app/views/spree/admin/trackers/index.html.erb
spree_core-1.0.1 app/views/spree/admin/trackers/index.html.erb
spree_core-1.0.0 app/views/spree/admin/trackers/index.html.erb
spree_core-1.0.0.rc4 app/views/spree/admin/trackers/index.html.erb
spree_core-1.0.0.rc3 app/views/spree/admin/trackers/index.html.erb
spree_core-1.0.0.rc2 app/views/spree/admin/trackers/index.html.erb
spree_core-1.0.0.rc1 app/views/spree/admin/trackers/index.html.erb