mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
* Bump color-string from 1.5.3 to 1.9.0 (#93) Bumps [color-string](https://github.com/Qix-/color-string) from 1.5.3 to 1.9.0. - [Release notes](https://github.com/Qix-/color-string/releases) - [Changelog](https://github.com/Qix-/color-string/blob/master/CHANGELOG.md) - [Commits](https://github.com/Qix-/color-string/commits/1.9.0) --- updated-dependencies: - dependency-name: color-string dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump ajv from 6.10.2 to 6.12.6 (#94) Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.2 to 6.12.6. - [Release notes](https://github.com/ajv-validator/ajv/releases) - [Commits](https://github.com/ajv-validator/ajv/compare/v6.10.2...v6.12.6) --- updated-dependencies: - dependency-name: ajv dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update rails, devise and administrate gems Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
863 B
Plaintext
27 lines
863 B
Plaintext
<%#
|
|
# Navigation
|
|
|
|
This partial is used to display the navigation in Administrate.
|
|
By default, the navigation contains navigation links
|
|
for all resources in the admin dashboard,
|
|
as defined by the routes in the `admin/` namespace
|
|
%>
|
|
|
|
<nav class="navigation" role="navigation">
|
|
<%= link_to(
|
|
"⇦ Back to site",
|
|
root_path,
|
|
class: "navigation__link button",
|
|
style: "color: #f6f7f7; background-color: #293f54; font-size: 15pt;",
|
|
"data-turbolinks": "false"
|
|
) %>
|
|
|
|
<% Administrate::Namespace.new(namespace).resources_with_index_route.each do |resource| %>
|
|
<%= link_to(
|
|
display_resource_name(resource),
|
|
resource_index_route(resource),
|
|
class: "navigation__link navigation__link--#{nav_link_state(resource)}"
|
|
) if valid_action?(:index, resource) && show_action?(:index, model_from_resource(resource)) %>
|
|
<% end %>
|
|
</nav>
|