Tweak group controls

This commit is contained in:
Shadowfacts 2020-06-01 18:45:02 -04:00
parent 09832d5da3
commit 35f8c983ad
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 7 additions and 8 deletions

View File

@ -1,23 +1,22 @@
<h1><%= @group.title %></h1>
<%= form_tag Routes.group_path(@conn, :delete, @group.id), method: :delete do %>
<%= submit "Delete Group", class: "btn btn-danger" %>
<% end %>
<%= form_for @create_feed_changeset, Routes.feed_path(@conn, :create), fn form -> %>
<%= hidden_input form, :group_id %>
<div class="form-group row">
<div class="row">
<%= label form, :feed_url, "Feed URL", class: "col-sm-2 col-form-label" %>
<div class="col-sm-10">
<div class="col-sm-8">
<%= text_input form, :feed_url, placeholder: "https://example.com/feed.xml", class: "form-control" %>
</div>
</div>
<div class="form-group row">
<div class="col-sm-10">
<div class="col-sm-2">
<%= submit "Add Feed", class: "btn btn-primary" %>
</div>
</div>
<% end %>
<%= form_tag Routes.group_path(@conn, :delete, @group.id), method: :delete do %>
<%= submit "Delete Group", class: "btn btn-danger" %>
<% end %>
<h3 class="mt-4">Feeds</h3>