Sha256: e6430c8b53534abaa4ebbd60a1fe4228bc3409f5867fc52affe2dab1432d7787

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

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

<div class='toolbar'>
  <ul class='actions'>
    <li>
      <%= button_link_to t("new_billing_integration"), new_object_url, :icon => 'add'  %>
    </li>
  </ul>
  <br class='clear' />
</div>

<h1><%= t("billing_integrations") %></h1>

<table class="index">
  <thead>
    <th><%= t("name") %></th>
    <th><%= t("provider") %></th>
    <th><%= t("environment") %></th>
    <th><%= t("active") %></th>     
    <th><%= t("action") %></th>
  </thead>
  <tbody>
    <% @billing_integrations.each do |integration|%>
      <tr id="<%= dom_id integration %>">
        <td width="120px"><%= integration.name %></td>
        <td width="140px"><%= integration.type %></td>
        <td width="100px"><%= integration.environment.to_s.titleize %></td>
        <td width="60px"><%= integration.active.to_s.titleize %></td>
        <td width="140px">
        	<%= link_to_edit integration %> &nbsp;
        	<%= link_to_delete integration %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree-enriquez-0.9.4 app/views/admin/billing_integrations/index.html.erb