Sha256: 058951e27f17e31f401c00c657c1e632ee81c8b8f49a85555bc3f4ccc96cd26d

Contents?: true

Size: 892 Bytes

Versions: 1

Compression:

Stored size: 892 Bytes

Contents

<html>
<head>
<title><%=TOURNAMENT_TITLE%></title>
<%= stylesheet_link_tag 'main' %>
</head>
<body>
<div id="wrap">
<div id="nav">
<ul>
<li><%= link_to "Home", :controller => 'pool', :action => 'index'%></li>
<% if session[:user_id] -%>
<li><%= link_to "Logout", :controller => 'sessions', :action => 'destroy'%></li>
<% else -%>
<li><%= link_to "Login", :controller => 'sessions', :action => 'new'%></li>
<li><%= link_to "Signup", :controller => 'users', :action => 'new'%></li>
<% end -%>
</ul>
</div>
<div id="messages">
<% if flash[:info] %>
<div id="info"><%= flash[:info] %></div>
<% end %>
<% if flash[:notice] %>
<div id="notice"><%= flash[:notice] %></div>
<% end %>
<% if flash[:error] %>
<div id="error"><%= flash[:error] %></div>
<% end %>
</div>
<div id="main_report">
<%= yield %>
</div>
<div id="footer">
<%= render :partial => 'shared/admins' %>
</div>
</div>
</body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tournament-2.0.0 webgui/app/views/layouts/report.html.erb