Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/assets/stylesheets/admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ input[name="admin_group[resources][]"] {
border-left: none;
}

.breadcrumb-item.active {
color: black;
}

/* ------------------------------ Admin Dashboard Tables ------------------------------ */

.section-create-button {
Expand Down
5 changes: 5 additions & 0 deletions app/views/admin/collections/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ Unless required by applicable law or agreed to in writing, software distributed
%>
<% @page_title = t('collections.show.title', :collection_name => @collection.name, :application_name => application_name) %>

<ol class="breadcrumb">
<li style="padding-bottom: 0px" class="breadcrumb-item"><%= link_to 'Manage Content', admin_dashboard_path %></li>
<li style="padding-bottom: 0px" class="breadcrumb-item"><%= link_to @collection.unit.name, admin_unit_path(@collection.unit) %></li>
<li style="padding-bottom: 0px" class="breadcrumb-item active"><%= @collection.name %></li>
</ol>
<div class="page-title-wrapper">
<h1 class="page-title">Manage Collection</h1>
</div>
Expand Down