Sha256: 674bbdbefc68b2ee9015c4fcb77b5450d58aa97fdf9b0b23fc0662c9065642f2
Contents?: true
Size: 956 Bytes
Versions: 26
Compression:
Stored size: 956 Bytes
Contents
<html> <head> <title><%=TOURNAMENT_TITLE%></title> <%= javascript_include_tag 'prototype' %> <%= javascript_include_tag 'bracket' %> <%= stylesheet_link_tag 'main' %> <%= stylesheet_link_tag 'bracket' %> </head> <body> <div id="wrap"> <div id="nav"> <ul> <li><%= link_to "Home", :controller => 'pool', :action => 'index'%></li> <li><%= link_to "Entries", :controller => 'entry', :action => 'index', :id => @entry.pool.id%></li> <li><%= link_to "Print", :controller => 'entry', :action => (PdfHelper.prince_available? ? 'pdf' : 'print'), :id => @entry.id%></li> </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="main2"> <%= yield %> </div> <div id="footer"> <%= render :partial => 'shared/admins' %> </div> </div> </body> </html>
Version data entries
26 entries across 26 versions & 1 rubygems