Sha256: 7b06a5df4bd193bb5cabbcf027119ba43e03466a0f6912b6c417243d638dc68d

Contents?: true

Size: 1.27 KB

Versions: 9

Compression:

Stored size: 1.27 KB

Contents

%h3
  = I18n.t "iugu.available_plans"

%table
  %tr
    %th
      = I18n.t "iugu.plan"
    %th
      = "#{I18n.t("iugu.price")} (#{@currency})"
    %th
      = I18n.t "iugu.duration"
    %th
    - @plans.reverse.each do |plan|
      %tr{ :class => "#{ (plan.identifier == @subscription.plan_identifier) ? 'plan active_plan' : 'plan' }" }
        %td
          = plan.name
        %td
          - price = plan.price_by_currency @currency
          = Money.new(price.value_cents, @currency).format
        %td
          = "#{plan.interval} #{I18n.t("iugu.interval_type." + (plan.interval == 1 ? plan.interval_type.singularize : plan.interval_type))}"
        %td{ :style => "text-align:center" }
          - if plan.identifier == @subscription.plan_identifier
            %strong
              = I18n.t "iugu.your_plan"
          - else
            - text = "iugu.change_plan"
            - text = "iugu.upgrade" if price.value_cents > @subscription.price_cents
            - text = "iugu.downgrade" if price.value_cents < @subscription.price_cents
            = link_to(I18n.t(text), plan_change_url(id: @account.id.to_param, plan: plan.identifier), method: :post, :class => "button no-bottom-margin")

= link_to I18n.t("iugu.back"), account_view_path(id: params[:id]), class: "button no-bottom-margin"

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
iugusdk-1.0.0.alpha.30 app/views/iugu/plan/index.html.haml
iugusdk-1.0.0.alpha.29 app/views/iugu/plan/index.html.haml
iugusdk-1.0.0.alpha.28 app/views/iugu/plan/index.html.haml
iugusdk-1.0.0.alpha.27 app/views/iugu/plan/index.html.haml
iugusdk-1.0.0.alpha.26 app/views/iugu/plan/index.html.haml
iugusdk-1.0.0.alpha.25 app/views/iugu/plan/index.html.haml
iugusdk-1.0.0.alpha.24 app/views/iugu/plan/index.html.haml
iugusdk-1.0.0.alpha.23 app/views/iugu/plan/index.html.haml
iugusdk-1.0.0.alpha.22 app/views/iugu/plan/index.html.haml