diff --git a/app/views/static_pages/about.html.erb b/app/views/static_pages/about.html.erb
index c48a265..6cd6a78 100644
--- a/app/views/static_pages/about.html.erb
+++ b/app/views/static_pages/about.html.erb
@@ -8,7 +8,8 @@
Tournament Types
- Pool to bracket (adhears to 5 match per day rule)
- - Double elimination 16 man and 8 man
+ - Regular Double Elimination 16 man and 8 man. Options for placing 1st-6th or 1st-8th.
+ - Modified 16 Man Double Elimination 1-6. Options for placing 1st-6th or 1st-8th. Adhears to 5 match per day rule.
Team point calculation
@@ -60,9 +61,23 @@
Eight pools of 3 (2 matches each) to a quarter final bracket - 17-24 wrestlers, place 1-8.
-Double Elimination Information
+Regular Double Elimination Information
Right now, double elimination brackets only support 8 and 16 man brackets (4-16 wrestlers). Cross bracketing will happen every other round. 16 man in quarter finals, 8 man in semi finals.
-Double elimination scoring
+Regular Double Elimination 1-6 places 1st through 6th. Regular Double Elimination 1-8 places 1st through 8th.
+Regular Double Elimination scoring
+
+ - Championship win: 2pt
+ - Consolation win: 1pt
+ - Win by major: 1pt extra
+ - Win by tech: 1.5pt extra
+ - Win by fall, default, dq, etc: 2pt extra
+ - BYE points: 2pts if you have a bye in the championship bracket and win the next match. 1pt if you have a bye in the consolation bracket and win the next match.
+
+
+Modified 16 Man Double Elimination Information
+Adhears to 5 match per day rule. Allows a 16 man bracket without anyone wrestling more than 5 matches. Semi Final losers wrestle for 3rd. Anyone who loses before the Semi Finals wrestle a consolation bracket for 5th.
+Modified 16 Man Double Elimination 1-6 places 1st through 6th. Modified 16 Man Double Elimination 1-8 places 1st through 8th.
+Modified 16 Man Double Elimination 1-6 scoring (same as Regular Double Elimination)
- Championship win: 2pt
- Consolation win: 1pt
@@ -127,7 +142,7 @@
Future Plans
-Future development plans to support 32 and 64 man double elimination as well as modified (5 per day match rule) 16 and 32 man double elimination brackets are underway.
+Future development plans to support 32 and 64 man regulard double elimination, modified (5 per day match rule) 32 man double elimination, and true second double elimination brackets are underway.
Contact
diff --git a/app/views/tournaments/_form.html.erb b/app/views/tournaments/_form.html.erb
index 705506e..2328961 100644
--- a/app/views/tournaments/_form.html.erb
+++ b/app/views/tournaments/_form.html.erb
@@ -35,6 +35,10 @@
<%= f.label :tournament_type %>
<%= f.select :tournament_type, @tournament.tournament_types %>
+
+
+ See About page for information on tournament types: <%= link_to "About", "/static_pages/about" %>
+
<%= f.hidden_field :user_id, :value => current_user.id %>