##// END OF EJS Templates
Hard-coded "Back" on 404 view (#12231)....
Hard-coded "Back" on 404 view (#12231). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10745 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10530:48d83884c36f
r10530:48d83884c36f
Show More
error.html.erb
8 lines | 207 B | text/plain | TextLexer
Toshi MARUYAMA
set svn:eol-style=native app/views/common/error.html.erb....
r5752 <h2><%=h @status %></h2>
Jean-Philippe Lang
Do not show the paragraph if no message is set....
r7756 <% if @message.present? %>
<p id="errorExplanation"><%=h @message %></p>
<% end %>
Jean-Philippe Lang
Hard-coded "Back" on 404 view (#12231)....
r10530 <p><a href="javascript:history.back()"><%= l(:button_back) %></a></p>
Toshi MARUYAMA
set svn:eol-style=native app/views/common/error.html.erb....
r5752
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title @status %>