Sha256: 370ef9d97b3dccfe11569e743c8e22cc2ba17dd2e860a97e96aebcc0f581e195

Contents?: true

Size: 751 Bytes

Versions: 12

Compression:

Stored size: 751 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>Filter Export Data Table</title>
    <style>
    	body {
    		font:Arial 12pt;
    	}
    	th {
    		padding:5px;
    		border-bottom:1px solid #ccc;
    	}
    	td {
    		padding:5px;
    	}
    </style>
  </head>
  <body>
  	<table>
  		<tr>
		  	<% @wf_filter.fields.each do |field| %>  	
		    	<th><%=field %></th>
		    <% end %>	
		</tr>   
		<% @wf_filter.results.each do |obj| %>
			<tr>
				<% @wf_filter.fields.each do |field| %>  	
					<td><%=obj.send(field).to_s %></td>
				<% end %>
			</tr>	
		<% end %>
	 </table>		
  </body>
</html>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
will_filter-5.1.4 app/views/will_filter/exporter/export.html.erb
will_filter-5.1.3 app/views/will_filter/exporter/export.html.erb
will_filter-5.1.2 app/views/will_filter/exporter/export.html.erb
will_filter-5.1.1 app/views/will_filter/exporter/export.html.erb
will_filter-5.1.0 app/views/will_filter/exporter/export.html.erb
will_filter-3.1.11 app/views/will_filter/exporter/export.html.erb
will_filter-3.1.10 app/views/will_filter/exporter/export.html.erb
will_filter-3.1.9 app/views/will_filter/exporter/export.html.erb
will_filter-3.1.8 app/views/will_filter/exporter/export.html.erb
will_filter-3.1.7 app/views/will_filter/exporter/export.html.erb
will_filter-3.1.6 app/views/will_filter/exporter/export.html.erb
will_filter-3.1.5 app/views/will_filter/exporter/export.html.erb