Sha256: c475b77a6f99512cd83037c3879e049b0943cc02d342070e291ef22a256c481f
Contents?: true
Size: 613 Bytes
Versions: 4
Compression:
Stored size: 613 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(current_user) %> <% end %> <% end %> <%= yield %> </body> </html>
Version data entries
4 entries across 4 versions & 1 rubygems