unclesp1d3r/CipherSwarm

View on GitHub
app/views/projects/edit.html.erb

Summary

Maintainability
Test Coverage
<%= render Railsboot::HeaderComponent.new do |header| %>
  <% header.with_heading do %>
    <%= title @project.name %>
  <% end %>
  <% header.with_breadcrumb.with_items([
       { text: "Dashboard", href: root_path },
       { text: "Admin", href: admin_index_path },
       { text: @project.name, href: @campaign },
       { text: "Edit", active: true }
     ]) %>
<% end %>
<%= render "form", project: @project %>