Sha256: 7540673d0800638d1d7ab3bd75062d837c73599ab0e34cd5b4add5356c2c96cc
Contents?: true
Size: 1.57 KB
Versions: 3
Compression:
Stored size: 1.57 KB
Contents
<% if @account.present? %> <dl class="dl-horizontal"> <dt>Id:</dt> <dd><%= @account.account_id %> </dd> <dt>Name:</dt> <dd><%= @account.name %> </dd> <dt>Email:</dt> <dd><%= @account.email %> </dd> <dt>Bill cycle day:</dt> <dd><%= @account.bill_cycle_day.day_of_month_local %> (user timezone) / <%= @account.bill_cycle_day.day_of_month_utc %> (UTC)</dd> <dt>Currency:</dt> <dd><%= @account.currency %> </dd> <dt>Timezone:</dt> <dd><%= @account.timezone %> </dd> <dt>Address 1:</dt> <dd><%= @account.address1 %> </dd> <dt>Address 2:</dt> <dd><%= @account.address2 %> </dd> <dt>Company:</dt> <dd><%= @account.company %> </dd> <dt>State:</dt> <dd><%= @account.state %> </dd> <dt>Country:</dt> <dd><%= @account.country %> </dd> <dt>Phone:</dt> <dd><%= @account.phone %> </dd> <dt>External key:</dt> <dd><%= @account.external_key %> </dd> <%= render :partial => "kaui/tags/tags_table", :locals => { :tags => @tags, :tags_url_or_path => kaui_engine.edit_account_tags_path(:params => { :account_id => @account.account_id }) } %> </dl> <% if @subscriptions.present? %> <%= render :partial => "kaui/subscriptions/subscriptions_table", :locals => { :subscriptions => @subscriptions } %> <% end %> <% if @payment_methods.present? %> <%= render :partial => "kaui/payment_methods/payment_methods_table", :locals => { :payment_methods => @payment_methods } %> <% end %> <% else %> <p>Account not found</p> <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
kaui-0.0.8 | app/views/kaui/accounts/show.html.erb |
kaui-0.0.7 | app/views/kaui/accounts/show.html.erb |
kaui-0.0.6 | app/views/kaui/accounts/show.html.erb |