Listing Charge Templates

<% if @charge_templates.size > 0 %> <% ["Name", "Default Description", "Cost", "Default", "Edit", "Destroy"].each do |heading| %> <% end %> <% for charge_template in @charge_templates %> <% end %>
<%= heading %>
<%=h charge_template.name %> <%=h charge_template.description %> <%=h fmt_dollars(charge_template.cost) %> <%=h charge_template.default ? "Yes" : "No" %> <%= link_to 'Edit', :action => 'edit', :id => charge_template %> <%= link_to 'Destroy', { :action => 'destroy', :id => charge_template }, :confirm => 'Are you sure?' %>
<% else %>

There are currently no charge templates.

<% end %> <%= link_to 'New Charge Template', :action => 'new' %>