diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2013-10-18 12:10:42 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2013-10-18 12:10:42 +0900 |
commit | 42fbc911322db2a5fa8a9550ffceecd4da29f572 (patch) | |
tree | 64f80544ab8edcff59d1deeafc58dc3e01c94419 | |
parent | 2fbe4fad138c0b68c9e98b32ae398a6b93ea535b (diff) | |
download | gitlab-ce-42fbc911322db2a5fa8a9550ffceecd4da29f572.tar.gz |
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.
-rw-r--r-- | app/views/admin/projects/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/projects/show.html.haml b/app/views/admin/projects/show.html.haml index c8a87328207..65b9911dc46 100644 --- a/app/views/admin/projects/show.html.haml +++ b/app/views/admin/projects/show.html.haml @@ -35,7 +35,7 @@ = @project.creator.try(:name) || '(deleted)' %li - %span.light Created at: + %span.light Created on: %strong = @project.created_at.stamp("March 1, 1999") |