Show More
Commit Description:
fixed errors on test request: Rails.root is not a string, no errors.length
Commit Description:
fixed errors on test request: Rails.root is not a string, no errors.length
References:
File last commit:
Show/Diff file:
Action:
app/views/layouts/application.html.erb
| 21 lines
| 422 B
| text/plain
| TextLexer
|
|
r318 | <!DOCTYPE html> | ||
<html> | ||||
|
r27 | <head> | ||
|
r320 | <title><%= GraderConfiguration['contest.name'] %></title> | ||
<%= stylesheet_link_tag "application", :media => "all" %> | ||||
|
r318 | <%= javascript_include_tag "application" %> | ||
<%= csrf_meta_tags %> | ||||
|
r320 | <%= yield :head %> | ||
|
r27 | </head> | ||
<body> | ||||
|
r320 | <div class="userbar"> | ||
<%= user_header %> | ||||
</div> | ||||
<%= content_tag(:p,flash[:notice],:style => "color:green") if flash[:notice]!=nil %> | ||||
|
r318 | <%= yield %> | ||
|
r27 | |||
</body> | ||||
</html> | ||||