Sha256: 29dad3a03f7ffce3f75df865bf6834465318a38a30f70d452f4076b439b3d6f7
Contents?: true
Size: 1.04 KB
Versions: 11
Compression:
Stored size: 1.04 KB
Contents
<% content_for :meta_title, 'My Profile History' %> <% content_for :meta_description, "List of a user's historical activities on the site." %> <%= render 'tab_menu' %> <div id="profile-title"> <% if @profile.other_name.present? %> <h1> <%= @profile.other_name %><br /> <span class="secondary-name"><%= @profile.name %></span> </h1> <% else %> <h1><%= @profile.name %></h1> <% end %> </div> <br /> <table class='table table-striped'> <thead> <tr> <th>When?</th> <th>What happened?</th> </tr> </thead> <tbody> <% if @activities.any? %> <% @activities.each do |activity| %> <tr> <td><%= human_date_and_time(activity.created_at) %></td> <td><%= "You #{activity.message}".html_safe %></td> </tr> <% end %> <% else # no activities %> <tr><td>You don't have any activities yet.</td></tr> <% end %> </tbody> </table> <%= render 'admin_context_menu' %> <%# partial in tkh_menus gem or has to be added in host app %> <%= render './shared/menus' %>
Version data entries
11 entries across 11 versions & 1 rubygems