Sha256: 946dcc488571aef19b579ada2617ee9dc15be326d00881a9869044fa004d8da4

Contents?: true

Size: 725 Bytes

Versions: 5

Compression:

Stored size: 725 Bytes

Contents

<div class="saasaparilla">

	<h1>Plans</h1>

	<table>
	  <tr>
	    <th>Name</th>
	    <th>Billing period</th>
	    <th>Subscription</th>
	    <th>Extras</th>
	    <th></th>
	    <th></th>
	    <th></th>
	  </tr>

	<% @plans.each do |plan| %>
	  <tr>
	    <td><%= plan.name %></td>
	    <td><%= plan.billing_period %></td>
	    <td><%= plan.subscription_id %></td>
	    <td><%#= plan.extras %></td>
	    <td><%= link_to 'Show', admin_plan_path(plan) %></td>
	    <td><%= link_to 'Edit', edit_admin_plan_path(plan) %></td>
	    <td><%= link_to 'Destroy', admin_plan_path(plan), :confirm => 'Are you sure?', :method => :delete %></td>
	  </tr>
	<% end %>
	</table>

	<p><%= link_to 'New Plan', new_admin_plan_path %></p>

</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
saasaparilla-0.2.2 app/views/saasaparilla/admin/plans/index.html.erb
saasaparilla-0.2.1 app/views/saasaparilla/admin/plans/index.html.erb
saasaparilla-0.1.8 app/views/saasaparilla/admin/plans/index.html.erb
saasaparilla-0.1.7 app/views/saasaparilla/admin/plans/index.html.erb
saasaparilla-0.1.6 app/views/saasaparilla/admin/plans/index.html.erb