Sha256: e3a33f35e46f13207637068faff7fc53f89361c7bfab49ca83b6c3b45c0e1534

Contents?: true

Size: 1.1 KB

Versions: 19

Compression:

Stored size: 1.1 KB

Contents

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

<div class='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>
    <%= hook :admin_trackers_index_headers do %>
      <th><%= t(:google_analytics_id) %></th>
      <th><%= t("environment") %></th>
      <th><%= t("active") %></th>
    <% end %>
      <th><%= t("action") %></th>
    </tr>
  </thead>
  <tbody>
    <% @trackers.each do |tracker|%>
      <tr id="<%= dom_id tracker %>">
        <%- locals = {:tracker => tracker} %>
        <%= hook :admin_trackers_index_rows, locals do %>
          <td><%= tracker.analytics_id %></td>
          <td><%= tracker.environment.to_s.titleize %></td>
          <td><%= tracker.active ? t(:yes) : t(:no) %></td>
        <% end %>
        <td>
        	<%= link_to_edit tracker %> &nbsp;
        	<%= link_to_delete tracker %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

19 entries across 19 versions & 6 rubygems

Version Path
apispree_core-0.0.0 app/views/admin/trackers/index.html.erb
My-Commerce_core-1.1.0 app/views/admin/trackers/index.html.erb
My-Commerce_core-1.0.0 app/views/admin/trackers/index.html.erb
MyCommerceapi-1.0.0 core/app/views/admin/trackers/index.html.erb
MyCommerce-0.0.3 core/app/views/admin/trackers/index.html.erb
rfcommerce_core-0.0.3 app/views/admin/trackers/index.html.erb
spree_core-0.60.6 app/views/admin/trackers/index.html.erb
spree_core-0.60.5 app/views/admin/trackers/index.html.erb
spree_core-0.50.4 app/views/admin/trackers/index.html.erb
spree_core-0.60.4 app/views/admin/trackers/index.html.erb
spree_core-0.50.3 app/views/admin/trackers/index.html.erb
spree_core-0.60.3 app/views/admin/trackers/index.html.erb
spree_core-0.60.2 app/views/admin/trackers/index.html.erb
spree_core-0.60.1 app/views/admin/trackers/index.html.erb
spree_core-0.60.0 app/views/admin/trackers/index.html.erb
spree_core-0.60.0.RC1 app/views/admin/trackers/index.html.erb
spree_core-0.50.2 app/views/admin/trackers/index.html.erb
spree_core-0.50.1 app/views/admin/trackers/index.html.erb
spree_core-0.50.0 app/views/admin/trackers/index.html.erb