-
- <%= select p, :property, [{"URL", :url}, {"Title", :title}, {"Author", :author}, {"Content", :content}] %>
- |
-
- <%= select p, :mode, [{"contains", :contains_string}, {"matches regex", :matches_regex}] %>
- |
-
- <%= text_input p, :param %>
- |
-
- <%= number_input p, :weight %>
- |
-
- <%# when nesting form tags, the first nested one seems to get removed %>
- <%# not the first nested one in each row, but the first nested one overall %>
- <%# so we include a dummy form with display: none that gets stripped from the first row %>
- <%# but is present and invisible in subsequent rows %>
-
- <%= form_tag Routes.filter_path(@conn, :remove_rule, @changeset.data.id, [rule_id: p.data.id]), method: :post do %>
- <%= submit "Delete" %>
+
+
+ Rules
+
+
+
+
+ Property |
+ Mode |
+ Param |
+ Weight |
+ |
+
+
+
+ <%= inputs_for form, :rules, fn p -> %>
+
+
+ <%= select p, :property, [{"URL", :url}, {"Title", :title}, {"Author", :author}, {"Content", :content}], class: "form-control" %>
+ |
+
+ <%= select p, :mode, [{"contains", :contains_string}, {"matches regex", :matches_regex}], class: "form-control" %>
+ |
+
+ <%= text_input p, :param, class: "form-control" %>
+ |
+
+ <%= number_input p, :weight, class: "form-control" %>
+ |
+
+ <%# when nesting form tags, the first nested one seems to get removed %>
+ <%# not the first nested one in each row, but the first nested one overall %>
+ <%# so we include a dummy form with display: none that gets stripped from the first row %>
+ <%# but is present and invisible in subsequent rows %>
+
+ <%= form_tag Routes.filter_path(@conn, :remove_rule, @changeset.data.id, [rule_id: p.data.id]), method: :post do %>
+ <%= submit "Delete", class: "btn btn-danger" %>
+ <% end %>
+ |
+
<% end %>
-
-
- <% end %>
-
+
+ |