Sha256: 97e7383fe360267c1c9739e641ce36508604dba63b9fcfa9cddff67a2535ee1f

Contents?: true

Size: 1.18 KB

Versions: 12

Compression:

Stored size: 1.18 KB

Contents

<h1><%=translate('muck.commerce.subscription_plans_title') %></h1>
<p><%= link_to translate('muck.commerce.create_new_subscription_plan'), new_admin_subscription_plan_path %></p>
<table id="subscription_plans">
  <thead>
    <tr>
      <th><%=translate('muck.commerce.subscription_plans_name') %></th>
      <th><%=translate('muck.commerce.subscription_plans_sku') %></th>
      <th><%=translate('muck.commerce.subscription_plans_amount') %></th>
      <th><%=translate('muck.commerce.subscription_plans_renewal_period') %></th>
      <th><%=translate('muck.commerce.subscription_plans_trial_period') %></th>
      <th><%=translate('muck.commerce.subscription_plans_actions') %></th>
    </tr>
  </thead>
  <tbody>
    <% @subscription_plans.each do |subscription_plan| -%>
      <tr>
        <td><%= subscription_plan.name %></td>
        <td><%= subscription_plan.sku %></td>
        <td><%= subscription_plan.amount %></td>
        <td><%= subscription_plan.renewal_period %></td>
        <td><%= subscription_plan.trial_period %></td>
        <td><%= link_to translate('muck.commerce.edit'), edit_admin_subscription_plan_path(subscription_plan) %></td>
      </tr>
    <% end -%>
  </tbody>
</table>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
muck-commerce-3.0.1 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.2.8 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.2.7 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.2.6 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.2.5 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.2.4 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.2.3 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.2.2 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.2.1 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.2.0 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.1.9 app/views/admin/subscription_plans/index.html.erb
muck-commerce-0.1.8 app/views/admin/subscription_plans/index.html.erb