Commit 26045d7a authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #1596 from riyad/fix-messages-for-deleted-things

Fix messages for deleted things on dashboard
parents a635b9da 93bc1ff1
......@@ -54,7 +54,7 @@ class Event < ActiveRecord::Base
if project
project.name
else
"(deleted)"
"(deleted project)"
end
end
......
......@@ -70,7 +70,7 @@ module PushEvent
if new_ref?
"pushed new"
elsif rm_ref?
"removed #{ref_type}"
"deleted"
else
"pushed to"
end
......
.event-title
%span.author_name= link_to_author event
%span.event_label.pushed #{event.push_action_name} #{event.ref_type}
= link_to project_commits_path(event.project, event.ref_name) do
- if event.rm_ref?
%strong= event.ref_name
- else
= link_to project_commits_path(event.project, event.ref_name) do
%strong= event.ref_name
at
%strong= link_to event.project.name, event.project
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment