aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/user/index.rhtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/user/index.rhtml')
-rw-r--r--app/views/user/index.rhtml7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/views/user/index.rhtml b/app/views/user/index.rhtml
index c4264cb81..3e2668d01 100644
--- a/app/views/user/index.rhtml
+++ b/app/views/user/index.rhtml
@@ -6,12 +6,15 @@
<% for display_user in @display_users %>
<h1><%=@title%></h1>
+ <p class="subtitle">Joined on <%= simple_date(display_user.created_at) %></p>
- <p>Registered on <%= simple_date(display_user.created_at) %></p>
<p>Freedom of Information requests made by this person:</p>
<ul>
<% for info_request in display_user.info_requests %>
- <li><%= link_to h(info_request.title), request_url(:id => info_request) %></li>
+ <li>
+ <%= link_to h(info_request.title), request_url(:id => info_request) %>
+ on <%= simple_date(info_request.created_at) %>
+ </li>
<% end %>
</ul>
<% end %>