mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
21 lines
539 B
Plaintext
21 lines
539 B
Plaintext
<%#
|
|
# Sidebar
|
|
|
|
This partial is used to display the sidebar in Administrate.
|
|
By default, the sidebar contains navigation links
|
|
for all resources in the admin dashboard,
|
|
as defined by the routes in the `admin/` namespace
|
|
%>
|
|
|
|
<ul class="sidebar__list">
|
|
<% Administrate::Namespace.new(namespace).resources.each do |resource| %>
|
|
<li>
|
|
<%= link_to(
|
|
display_resource_name(resource),
|
|
[namespace, resource],
|
|
class: "sidebar__link sidebar__link--#{nav_link_state(resource)}"
|
|
) %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|