Commit 42fbc911322db2a5fa8a9550ffceecd4da29f572

Authored by David Pursehouse
1 parent 2fbe4fad

Correct date label on project information page

The label "Created at" would be appropriate for a timestamp such
as "09:30".

However the timestamp is actually being displayed as a date in
the format "Oct 15, 2013".  In this case "Created on" is better.
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/views/admin/projects/show.html.haml
... ... @@ -35,7 +35,7 @@
35 35 = @project.creator.try(:name) || '(deleted)'
36 36  
37 37 %li
38   - %span.light Created at:
  38 + %span.light Created on:
39 39 %strong
40 40 = @project.created_at.stamp("March 1, 1999")
41 41  
... ...