index.html.erb 309 Bytes
Newer Older
Joseph Gerard F. Reyes's avatar
Joseph Gerard F. Reyes committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<h1>Profile</h1>
	<table>
		<thead>
			<tr>
				<th>Name</th>
				<th>Age</th>
				<th>Course</th>
			</tr>
		</thead>
		<tbody>
			<% @facebook_compiler.each do |fb| %>
				<tr>
					<td><%= fb.name %></td>
					<td><%= fb.age %></td>
					<td><%= fb.course %></td>
				</tr>
			<% end %>
		</tbody>
</table>