Merge branch 'master' of github.com:zyphlar/Open-Source-Access-Control-Web-Interface

Conflicts:
	.gitignore
	Gemfile
	Gemfile.lock
	app/controllers/door_logs_controller.rb
	app/controllers/users_controller.rb
	app/models/user.rb
	app/views/door_logs/download.html.erb
	app/views/door_logs/show.html.erb
	app/views/layouts/application.html.erb
	app/views/users/show.html.erb
	app/views/users/upload.html.erb
	app/views/users/upload_all.html.erb
	config/environments/development.rb
	config/environments/production.rb
	config/routes.rb
	db/schema.rb
This commit is contained in:
2012-09-15 17:34:55 -07:00
39 changed files with 757 additions and 0 deletions

View File

@@ -10,7 +10,15 @@
<div id="header">
<a href="/users">Users</a>
<a href="/door_logs">Logs</a>
<<<<<<< HEAD
</div>
=======
<%= link_to 'Profile', edit_user_registration_path if user_signed_in? %>
<%= link_to 'Sign out', destroy_user_session_path, :method => :delete if user_signed_in? %>
</div>
<p class="notice"><%= notice %></p>
<p class="alert"><%= alert %></p>
>>>>>>> 03d99741e5b661e63f6281115d2db333082a09b1
<%= yield %>
</body>