unclesp1d3r/CipherSwarm

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

Summary

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

<%= render "form", campaign: @campaign %>