blob: 59c156833ccb23b2d4dbbd129ff5bdb3fe28abf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<% @title = "All FOI requests" %>
<h2><%=@title%></h2>
<p>
<table>
<tr>
<th>Title</th>
<th>Requester</th>
<th>Created</th>
</tr>
<% for info_request in @info_requests %>
<tr class="<%= cycle('odd', 'even') %>">
<td><%= link_to info_request.title, :controller => 'request', :action => 'index', :id => info_request %></td>
<td><%= link_to info_request.user.name, :controller => 'user', :action => 'index', :name => info_request.user.name %></td>
<td><%= info_request.created_at %></td>
</tr>
<% end %>
</table>
|