Sha256: 98c67f04a767ab2575a771d6668ec8ff9fe6d504b464568d0ea441abcbb99fd4

Contents?: true

Size: 779 Bytes

Versions: 12

Compression:

Stored size: 779 Bytes

Contents

<div class="row">
  <div class="small-12 columns">
    <h1>User</h1>
    <%= link_to 'Back', users_path, class: 'secondary button' %>
  </div>
</div>

<div class="row">
  <div class="small-12 columns">
    <table>
      <tr>
        <td><strong>Name</strong></td>
        <td><%= @user.name %></td>
      </tr>
      <tr>
        <td><strong>Email</strong></td>
        <td><%= @user.email %></td>
      </tr>
      <tr>
        <td><strong>Groups</strong></td>
        <td><%= @user.groups.collect(&:title).join(', ') %></td>
      </tr>
      <tr>
        <td><strong>Created</strong></td>
        <td><%= @user.created_at %></td>
      </tr>
      <tr>
        <td><strong>Updated</strong></td>
        <td><%= @user.updated_at %></td>
      </tr>
    </table>
  </div>
</div>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
guts-1.3.6 app/views/guts/users/show.html.erb
guts-1.3.5 app/views/guts/users/show.html.erb
guts-1.3.4 app/views/guts/users/show.html.erb
guts-1.3.3 app/views/guts/users/show.html.erb
guts-1.3.2 app/views/guts/users/show.html.erb
guts-1.3.1 app/views/guts/users/show.html.erb
guts-1.3.0 app/views/guts/users/show.html.erb
guts-1.2.2 app/views/guts/users/show.html.erb
guts-1.2.1 app/views/guts/users/show.html.erb
guts-1.2.0 app/views/guts/users/show.html.erb
guts-1.1.1 app/views/guts/users/show.html.erb
guts-1.1.0 app/views/guts/users/show.html.erb