Sha256: f8150d29283b0b347c8fe0ef2550a941515b479f902d332c2b1de0ad77c6bdc2
Contents?: true
Size: 609 Bytes
Versions: 13
Compression:
Stored size: 609 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Dummy</title> <%= stylesheet_link_tag :all %> <%= javascript_include_tag :defaults %> <%= csrf_meta_tag %> </head> <body> <% if signed_in? %> <% if user_signed_in? %> <h1 class='current_user'><%= current_user.email %></h1> <% end %> <% if student_signed_in? %> <h1 class='current_student'><%= current_student.email %></h1> <% end %> <% if user_masquerade? %> <%= link_to "Back masquerade", back_masquerade_path(User.new) %> <% end %> <% end %> <%= yield %> </body> </html>
Version data entries
13 entries across 13 versions & 1 rubygems