%h1= t(:pricing)
%p= btn icon('user') + t(:signup), signup_path

- levels = APP_CONFIG[:service_levels]
- if levels
  %table.table.table-striped.table-bordered
    %tr
      %th= t :plan
      %th= t :description
      %th= t :monthly_cost
    - levels.each do |id, level|
      %tr
        %td= level[:name]
        %td= level[:description]
        %td
          - if level[:rate].nil? || level[:rate] == 0
            = t(:free)
          - else
            = level[:rate].collect{|currency, price| "#{currency} #{price}"}.join(', ')
- else
  No service levels are configured.