scinote-web/app/views/global_activities/references/_project.html.erb

16 lines
613 B
Plaintext
Raw Normal View History

<%= render partial: "global_activities/references/team.html.erb",
locals: { subject: subject&.team, breadcrumbs: breadcrumbs } %>
2019-03-25 16:39:17 +08:00
<div class="ga-breadcrumb">
<%= image_tag 'icon_small/project.svg' %>
<% if subject %>
<% path = subject.archived? ? projects_path : project_path(subject) %>
<%= link_to path, title: subject.name do %>
<%= subject.name&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
<% end %>
<% else %>
<span title="<%= breadcrumbs[:project] %>">
2019-03-19 21:12:39 +08:00
<%= breadcrumbs[:project]&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
</span>
<% end %>
</div>