1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Created about page

This commit is contained in:
2015-11-30 15:18:03 +00:00
parent 940782f95d
commit ce2e80a2b4
5 changed files with 54 additions and 8 deletions

View File

@@ -1,11 +1,11 @@
<footer class="footer">
<br>
<small>
App made by Jacob Cody Wimer - jacob.wimer@gmail.com
</small>
<nav>
<ul>
<!-- <li><%= link_to "About", '#' %></li> -->
<!-- <li><%= link_to "Contact", '#' %></li> -->
</ul>
</nav>
<br>
<small>
&copy; 2015 wrestlingdev.com
</small>
</footer>

View File

@@ -10,9 +10,10 @@
<li><%= link_to "Results" , "/tournaments/#{@tournament.id}/results" %></li>
<li><%= link_to "Team Scores" , "/tournaments/#{@tournament.id}/team_scores" %></li>
<% end %>
<li><%= link_to "About", "/static_pages/about" %></li>
<% if user_signed_in? %>
<li><%=link_to "Log out", destroy_user_session_url ,:method => 'delete' %></li>
<li><%=link_to "Edit user", edit_user_registration_path %></li>
<li><%=link_to "Edit user", edit_user_registration_path %></li>
<% else %>
<li><%= link_to "Log In" , new_user_session_path %></li>
<% end %>

View File

@@ -33,8 +33,10 @@
</div>
</div>
</div>
<%= render 'layouts/footer' %>
</div>
</body>
<% end %>
</html>

View File

@@ -1,2 +1,44 @@
<h3>About WrestlingDev</h3>
<br>
<p>WrestlingDev was created to help bring wrestling into the 21st century for <strong>free</strong>. This site is <a href="https://github.com/jcwimer/wrestlingApp">open source</a> and is supported by the ads on the sidebar.</p>
<br>
<h4>Features</h4>
<br>
<p>At this moment in time, WrestlingDev supports a pool to bracket type tournament for up to 16 teams. The bracket format follows OHSAA's 5 match per day rule. WrestlingDev will automatically generate brackets, generate bout numbers, generate and update a bout board, track team points, and update brackets.</p>
<p>For pool to bracket tournaments, pool tie breakers are the following:</p>
<ul>
<li>Head to head</li>
<li>Least team points deducted</li>
<li>Most team points scored</li>
<li>Most wins by fall, default, dq</li>
<li>Most wins by tech fall</li>
<li>Most wins by major</li>
<li>Most points scored in decisions</li>
<li>Quickest pin</li>
<li>Coin flip</li>
</ul>
<p>If three wrestlers are tied, they will be put through this sequence until two wrestlers are left. Once two wrestlers are left, the pool runner up will be decided by head to head.</p>
<p>For pool to bracket tournaments, team points will be calculated as follows:</p>
<ul>
<li>Pool win: 1pt</li>
<li>Win by major: 1pt extra</li>
<li>Win by tech fall: 1.5pt extra</li>
<li>Win by fall, default, dq: 2pt extra</li>
<li>1st place: 16pt</li>
<li>2nd place: 12pt</li>
<li>3rd place: 10pt</li>
<li>4th place: 9pt</li>
<li>5th place: 7pt</li>
<li>6th place: 6pt</li>
<li>7th place: 4pt</li>
<li>8th place: 3pt</li>
</ul>
<p>Wins outside of the pool will only get bonus points (for maj tech or fall) and extra placement points. Please note, only brackets with four pools place up to 8. Brackets with 1 or 2 pools only place top 4.</p>
<br>
<h4>Future Plans</h4>
<br>
<p>Future development plans to support normal double elimination brackets are underway and are planned to be finished in time for the 2016-2017 wrestling season.</p>
<br>
<h4>Contact</h4>
<br>
<p>Suggestions, criticism, and kind words are welcomed. Please contact us.</p>

View File

@@ -25,6 +25,7 @@ Wrestling::Application.routes.draw do
get 'admin/index'
get 'static_pages/control_match'
get 'static_pages/not_allowed'
get 'static_pages/about'
get 'tournaments/:id/weigh_in/:weight' => 'tournaments#weigh_in_weight'
post 'tournaments/:id/weigh_in/:weight' => 'tournaments#weigh_in_weight'