Sha256: b8cad03f86e47ab0f233f99795cd271b241c87eb0e609976007666eac4be3f4b

Contents?: true

Size: 1.09 KB

Versions: 5

Compression:

Stored size: 1.09 KB

Contents

- content_for :title do I18n.t("iugu.account_settings") end

- if @accounts.count > 0

  %table
    %thead
      %th
        Conta
      %th{ :style => "width:50%" }
         
    %tbody
      - @accounts.each do |account|
        %tr
          %td
            = account.name
          %td
            .group.horizontal_stacking
              - if current_user_account && current_user_account.account_id == account.id
                = link_to I18n.t("iugu.active"), "javascript:function(){}", :class => "button no-bottom-margin disabled", :style => "width: 40%"
              - else
                = link_to I18n.t("iugu.select"), account_select_path(account), :class => "button no-bottom-margin", :style => "width: 40%"
              = link_to I18n.t("iugu.settings"), account_view_path(account), :class => "button no-bottom-margin", :style => "width: 60%"

- else
  %h2
    = I18n.t("iugu.i_dont_have_any_accounts")


- if IuguSDK::enable_multiple_accounts == true
  %div
    = link_to I18n.t("iugu.create_account"), account_create_path, :method => :post, :class => "button full-width no-bottom-margin default" 

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
iugusdk-1.0.1 app/views/iugu/settings/accounts.html.haml
iugusdk-1.0.0.alpha.32 app/views/iugu/settings/accounts.html.haml
iugusdk-1.0.0.alpha.31 app/views/iugu/settings/accounts.html.haml
iugusdk-1.0.0.alpha.30 app/views/iugu/settings/accounts.html.haml
iugusdk-1.0.0.alpha.29 app/views/iugu/settings/accounts.html.haml