Sha256: 6d27c857ab180010c5efb3de39398113021dddfdfe94e43f9d7974eae5be196e

Contents?: true

Size: 1.01 KB

Versions: 15

Compression:

Stored size: 1.01 KB

Contents

<h1>Listing <%%= <%= "#{model_class_name}.human_name" %> %></h1>

<table>
	<thead>
		<tr>
			<th><%%= sort_link @search, :id %></th>
			<%- for attribute in attributes -%>
			<th><%%= sort_link @search, :<%= attribute.name %> %></th>
			<%- end -%>
			<th>Actions</th>
		</tr>
	</thead>
	
	<%% <%= "@#{plural_model_name}" %>.each do |<%= singular_model_name %>| %>
	<tr>
		<td><%%= <%= singular_model_name %>.id %></td>
		<%- for attribute in attributes -%>
		<td><%%=<%= "l" if %w[date datetime time].include?(attribute.type.to_s) %> <%= singular_model_name %>.<%= attribute.name %> %></td>
		<%- end -%>
		<td>
			<%%= link_to 'Edit', edit_<%= resource_path_prefix %>_path(<%= singular_model_name %>) %>
			<%%= link_to 'Destroy', <%= resource_path_prefix %>_path(<%= singular_model_name %>), :confirm => 'Are you sure?', :method => :delete %>
		</td>
	</tr>
	<%% end %>
</table>

<%%= paginate <%= "@#{plural_model_name}" %> %>

<div class="actions">
	<%%= link_to 'New <%= human_name %>', new_<%= resource_path_prefix %>_path %>
</div>

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
fume-0.10.0a lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.9.3 lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.9.2 lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.9.1 lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.9.0 lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.8.1a lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.8.0 lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.8.0b lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.8.0a lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.7.2 lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.7.1 lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.7.0 lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.6.7 lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.6.6 lib/generators/fume/simple_scaffold/templates/index.html.erb
fume-0.6.4 lib/generators/fume/simple_scaffold/templates/index.html.erb