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

Installed devise

This commit is contained in:
Jacob Cody Wimer
2014-01-21 22:23:09 -05:00
parent 73d22a126a
commit 382e1a0c05
4 changed files with 36 additions and 9 deletions

View File

@@ -5,13 +5,16 @@
<nav>
<ul class="nav pull-right">
<li><%= link_to "Home", root_path %></li>
<li><%= link_to "School Scores", '/static_pages/school' %></li>
<li><%= link_to "Brackets" , '#' %></li>
<li><%= link_to "Bout Board" , '#' %></li>
<% #If logged in %>
<li><%= link_to "Admin" , '/admin/index' %></li>
<% #ELSE %>
<li><%= link_to "Log In" , '#' %></li>
<% if @tournament %>
<li><%= link_to "Brackets" , '#' %></li>
<li><%= link_to "Bout Board" , '#' %></li>
<% end %>
<% if user_signed_in? %>
<li><%= link_to "Admin" , '/admin/index' %></li>
<li><%= link_to "Log Out", destroy_user_session_path, method: :delete %></li>
<% else %>
<li><%= link_to "Log In" , new_user_session_path %></li>
<% end %>
</ul>
</nav>
</div>

View File

@@ -14,7 +14,12 @@
<% @tournaments.each do |tournament| %>
<tr>
<td><%= tournament.name %></td>
<td><%= link_to 'Show', tournament, :class=>"btn" %><%= link_to 'Edit', edit_tournament_path(tournament), :class=>"btn" %><%= link_to 'Destroy', tournament, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %></td>
<td><%= link_to 'Show', tournament, :class=>"btn" %>
<% if user_signed_in? %>
<%= link_to 'Edit', edit_tournament_path(tournament), :class=>"btn" %>
<%= link_to 'Destroy', tournament, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %>
<% end %>
</td>
</tr>
<% end %>
</tbody>

View File

@@ -1,4 +1,5 @@
Wrestling::Application.routes.draw do
devise_for :users
resources :tournaments
resources :schools

View File

@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140121020833) do
ActiveRecord::Schema.define(version: 20140122030856) do
create_table "schools", force: true do |t|
t.string "name"
@@ -30,6 +30,24 @@ ActiveRecord::Schema.define(version: 20140121020833) do
t.datetime "updated_at"
end
create_table "users", force: true do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "users", ["email"], name: "index_users_on_email", unique: true
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
create_table "weights", force: true do |t|
t.integer "max"
t.datetime "created_at"