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