blob: f2f76a81777519539f261f8af25f7e461303f9d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<% @title = _("Request has been removed") %>
<h1><%=@title%></h1>
<p>
<%=@details%>
</p>
<p><%= _('The request you have tried to view has been removed. There are
various reasons why we might have done this, sorry we can\'t be more specific here. Please <a
href="{{url}}">contact us</a> if you have any questions.', :url => help_contact_path.html_safe) %>
</p>
<% if @info_request.prominence == 'requester_only' %>
<p>
<%= _('If you are the requester, then you may <a href="{{url}}">sign in</a> to view the request.', :url => signin_url(:r => request.fullpath).html_safe) %>
</p>
<% end %>
|