All checks were successful
continuous-integration/drone/push Build is passing
Prototyping settings forms
12 lines
451 B
Plaintext
12 lines
451 B
Plaintext
<%= render SidenavLinkComponent.new(
|
|
name: "Registrations", path: admin_settings_registrations_path, icon: "user",
|
|
active: current_page?(admin_settings_registrations_path)
|
|
) %>
|
|
<%= render SidenavLinkComponent.new(
|
|
name: "Services", path: admin_settings_services_path, icon: "grid",
|
|
active: current_page?(admin_settings_services_path)
|
|
) %>
|
|
<%= render SidenavLinkComponent.new(
|
|
name: "Security", path: "#", icon: "shield", disabled: true
|
|
) %>
|