EvoBal/app/views/filters/show.html.erb

26 lines
654 B
Plaintext

<% content_for :main_header do %>
<h1>Filter #<%= @filter.id %></h1>
<% end %>
<p id="notice"><%= notice %></p>
<%= link_to 'Back to filters list', filters_path %>
<%= turbo_frame_tag "filter" do %>
<%= render @filter %>
<% end %>
<div id="conditions">
<h2>Conditions</h2>
<%= render(@filter.conditions) || "No conditions yet" %>
</div>
<%= turbo_frame_tag "new_condition", src: new_filter_condition_path(@filter), target: "_top" %>
<div id="operations">
<h2>Operations</h2>
<%= render(@filter.operations) || "No operations yet" %>
</div>
<%= turbo_frame_tag "new_operation", src: new_filter_operation_path(@filter), target: "_top" %>