43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
<div class="row">
|
|
<div class="col-md-4 col-sm-6 col-md-offset-4 col-sm-offset-3">
|
|
|
|
<% if current_login_employee.role = "admin" %>
|
|
|
|
<% elsif current_login_employee.role = "cashier" %>
|
|
<%= link_to "Cashier Station", origami_path %>
|
|
|
|
<% elsif current_login_employee = "account" %>
|
|
<%= link_to "Cashier Station", oishi_path %>
|
|
|
|
<% else %>
|
|
<%= link_to "Cashier Station", oishi_path %>
|
|
|
|
<% end %>
|
|
<% shop = Shop.first %>
|
|
</div>
|
|
</div>
|
|
<div class="footer">
|
|
<div class="card">
|
|
<div class="page-header" style="width:100%;text-align:center;background-color:#ddd;">
|
|
<h4 style="color : #ef404a;font-weight:bold;font-style:italic;margin-bottom:0px;"><%= shop.name %></h4>
|
|
</div>
|
|
<div class="card-block" style="text-align:center;background-color:#ddd;padding:0rem;">
|
|
<%= shop.address %>
|
|
</div>
|
|
<div class="card-block" style="text-align:center;background-color:#ddd;padding:0rem;">
|
|
<%= shop.phone_no %>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<style type="text/css">
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
height: auto;
|
|
background-color: #ef404a;
|
|
width: 100%;
|
|
}
|
|
</style>
|