Changing door access tablet interface

This commit is contained in:
2013-12-29 21:56:47 -07:00
parent cbadcc5c73
commit 6157280655
4 changed files with 97 additions and 29 deletions

View File

@@ -17,7 +17,7 @@
<% else %>
<%= link_to 'Certifications', certifications_path if can? :read, Certification %>
<% end %>
<%= link_to 'Payments', payments_path if can? :read, Payment %>
<%= link_to 'Payments', payments_path if can? :create, Payment %>
<%= link_to 'Computers', macs_path if user_signed_in? || (can? :read, Mac) %>
<%= link_to 'Settings', settings_path if can? :read, Setting %>
<% if user_signed_in? then %><%= link_to 'Profile', edit_user_registration_path %><% end %>

View File

@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html>
<head>
<title>HSL Access</title>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a id="home_nav_link" href="/" title="Home" class="navbar-brand">
<img src="/assets/logo.png" id="logo" />
</a>
<ul class="nav navbar-nav">
<li class="active">
<%= yield :header %>
</li>
</ul>
</div>
</nav>
<div id="content">
<% if(notice) then %><p class="notice"><%= raw(notice) %></p><% end %>
<% if(alert) then %><p class="alert"><%= raw(alert) %></p><% end %>
<%= yield %>
</div>
<%= raw Setting.analytics_code if Setting.present? %>
</body>
</html>