diff options
Diffstat (limited to 'app/views/request/show.rhtml')
-rw-r--r-- | app/views/request/show.rhtml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/views/request/show.rhtml b/app/views/request/show.rhtml new file mode 100644 index 000000000..950ecd8e9 --- /dev/null +++ b/app/views/request/show.rhtml @@ -0,0 +1,16 @@ +<% @title = h(@info_request.title) %> + +<h2><%=@title%></h2> + +<p> +Request to <%=h @info_request.public_body.name%> +</p> + +<p> +Created by +<%= link_to h(@info_request.user.name), :controller => 'user', :action => 'index', :name => @info_request.user.name %> +on <%= simple_date(@info_request.created_at) %> +</p> + + + |