Sha256: b2b9223a48f7a19177a48f917e847cbc5bcdfc85d6d65ea6fafd4789fa90805c

Contents?: true

Size: 897 Bytes

Versions: 3

Compression:

Stored size: 897 Bytes

Contents

<% content_for :header do -%>
  <h2>Settings for <span><%= current_account.name %></span></h2>
<% end -%>

<%= render :partial => 'subnav' %>

<div class="plan current">
  <h3>Your Plan</h3>
  <%= render @account.plan %>
  <%= link_to "Upgrade", edit_account_plan_path(current_account), :id => "upgrade-account" %>
</div>

<%= content_tag_for :div, @account do -%>
  <%= semantic_form_for @account do |form| %>
    <%= form.inputs do %>
      <%= form.input :name, :label => "Account name" %>
      <%= form.input :keyword %>
    <% end %>

    <%= form.buttons do %>
      <%= form.commit_button "Update" %>
      <li>
        <%= link_to t(".delete", :default => "Delete my account"),
                    @account,
                    :method  => :delete,
                    :confirm => "Are you sure? All data will be irreversibly deleted." %>
      </li>
    <% end %>
  <% end %>
<% end -%>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
saucy-0.3.2 app/views/accounts/edit.html.erb
saucy-0.3.1 app/views/accounts/edit.html.erb
saucy-0.3.0 app/views/accounts/edit.html.erb