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

Tutorials page added

This commit is contained in:
2016-01-19 19:04:29 +00:00
parent 6c8f122aca
commit 85fb0947b5
4 changed files with 22 additions and 0 deletions

View File

@@ -14,4 +14,7 @@ class StaticPagesController < ApplicationController
def about
end
def tutorials
end
end

View File

@@ -6,6 +6,7 @@
<ul class="nav navbar-nav navbar-right navbar-custom-link">
<li><%= link_to "Browse Tournaments", "/tournaments/" %></li>
<li><%= link_to "About", "/static_pages/about" %></li>
<li><%= link_to "Tutorials", "/static_pages/tutorials" %></li>
<% if user_signed_in? %>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"><%= current_user.email %>

View File

@@ -0,0 +1,17 @@
<h3>Tutorials</h3>
<br>
<p>Unfortunately, I do not have tutorials available at this moment in time. If you would like to learn how to use this software, please email me at jacob.wimer@gmail.com and I will gladly provide an overview of how to use this software. I've done my best to make the software intuitive and easy to use.</p>
<br>
<h4>Planning on using this software?</h4>
<br>
<p>Here is a list of features available:</p>
<br>
<ul>
<li>Pool to bracket type bracket generation for up to 16 man brackets</li>
<li>Delegate control to coaches for lineup entry</li>
<li>Automatically updated bout board</li>
<li>Automatically updated brackets</li>
<li>Automatically updated team scores</li>
<li>Delegate director privileges to multiple people for tournament administration</li>
<li>Matches can be scored at the tables and submitted via computer or bout sheets can be brought to the head table and entered there</li>
</ul>

View File

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