Sha256: 866deec6b0da7a61f3971b09f25dce0f8306960db62b7383b3273cc781a5520f

Contents?: true

Size: 922 Bytes

Versions: 9

Compression:

Stored size: 922 Bytes

Contents

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
		<title>Export Data Table</title>
		<style>
			body {
				font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
				font-size:10px;
			}
			table {
				border: 1px solid #ccc;
			}
			th {
				text-align:left;
				vertical-align:top;
				border: 1px solid #ccc;
			}
			td {
				text-align:left;
				vertical-align:top;
				border: 1px solid #ccc;
			}
		</style>
	</head>
	<body>
		<table cellspacing="1px" cellpadding="1px">
			<tr>
				<% @model_filter.fields.each do |field| %>
				<th><%=field%></th>
				<% end %>
			</tr>
	
			<% @objects.each do |obj| %>
			<tr>
				<% @model_filter.fields.each do |field| %>
				<td><%=obj.send(field).to_s %></td>
	      <% end %>
			</tr>
      <% end %>  
		</table>	
		
	</body>
</html>

Version data entries

9 entries across 3 versions & 1 rubygems

Version Path
will_filter-3.1.3 app/views/will_filter/filter/.tmp_export_data.html.erb.50322~
will_filter-3.1.3 app/views/will_filter/exporter/.tmp_index.html.erb.28308~
will_filter-3.1.3 app/views/will_filter/exporter/.tmp_index.html.erb.29049~
will_filter-3.1.2 app/views/will_filter/exporter/.tmp_index.html.erb.29049~
will_filter-3.1.2 app/views/will_filter/exporter/.tmp_index.html.erb.28308~
will_filter-3.1.2 app/views/will_filter/filter/.tmp_export_data.html.erb.50322~
will_filter-3.1.1 app/views/will_filter/exporter/.tmp_index.html.erb.28308~
will_filter-3.1.1 app/views/will_filter/filter/.tmp_export_data.html.erb.50322~
will_filter-3.1.1 app/views/will_filter/exporter/.tmp_index.html.erb.29049~