Sha256: 80a40872bf7d4a9b72bf3da5a6976fa798323125597491aff274c203a8531eaf

Contents?: true

Size: 1016 Bytes

Versions: 28

Compression:

Stored size: 1016 Bytes

Contents

<div id='kitsune_record_header'>
	<h2><%= @model.admin_name %></h2>
	<div id='menu'>
		<%= link_to "New #{params[:id]}", new_admin_kitsune_model_record_path(params[:model_id]) %>
	</div>
</div>
<% @model.tabs.each do |key, value|%>
<%= link_to key, value %>
<% end %>
<table>
	<thead>
		<tr>
			<% @model.columns(:display).each do |column| %>
				<th><%= sort_link_to(@model, column) %></th>
			<% end %>
			<th>Actions</th>
		</tr>
	</thead>
	<tbody>
		<% @records.each do |record| %>
			<tr class="<%= cycle('odd', 'even') %>">
				<% @model.columns(:display).each do |column| %>
					<td><%= truncate(sanitize(record.send(column.name).to_s), :length => 20) %></td>
				<% end %>
				<td>
					<%= link_to 'Edit', edit_admin_kitsune_model_record_path(params[:model_id], record.id) %> 
					- 
					<%= link_to 'Delete', admin_kitsune_model_record_path(params[:model_id], record.id), :method => :delete, :confirm => "Are you sure?" %>
				</td>
			</tr>
		<% end %>
	</tbody>
</table>

<%= will_paginate @records %>

Version data entries

28 entries across 26 versions & 2 rubygems

Version Path
ds-kitsune-0.2.5 generators/kitsune_flat_files/templates/index.html.erb
ds-kitsune-0.2.3 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.2.1 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.2.0 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.1.5 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.1.4 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.1.3 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.1.2 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.1.1 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.1.0 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.0.19 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.0.18 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.0.17 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.0.16 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.0.14 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.0.13 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.0.12 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.0.11 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.0.10 generators/kitsune_flat_files/templates/index.html.erb
kitsune-0.0.9 generators/kitsune_flat_files/templates/index.html.erb