Commit 6a3d011f

mo k <m@mokhan.ca>
2011-11-25 07:17:21
fix typo on user listing page.
1 parent a4128b9
Changed files (1)
app
views
app/views/profiles/index.html.erb
@@ -2,7 +2,7 @@
   All <%= @profiles.length %> profiles
 <% end %>
 
-<div class="grid_9 alpha omega">
+<div class="grid_12 alpha omega">
   <h1>All <%= @profiles.length %> profiles</h1>
   <table class="simple-table">
     <thead>
@@ -18,8 +18,8 @@
         <tr>
           <td><a href="<%= url_for profile_path(profile) %>"><%= image_tag avatar_url(profile), :class => "photo", :alt => profile.name %></a></td>
           <td><%= link_to profile.name, profile_path(profile) %></td>
-          <td><a href="<%= url_for profile_path(profile) %>"><%= profile.creations.length %>creations</a></td>
-          <td><%= profile.created_at %></td>
+          <td><a href="<%= url_for profile_path(profile) %>"><%= profile.creations.length %> creations</a></td>
+          <td><%= profile.created_at.to_s :foomat %></td>
         </tr>
       <% end %>
     </tbody>