2019-11-09 18:21:45 +00:00
|
|
|
<h1><%= @group.title %></h1>
|
2019-03-21 23:21:56 +00:00
|
|
|
|
|
|
|
<%= form_for @create_feed_changeset, Routes.feed_path(@conn, :create), fn form -> %>
|
|
|
|
<%= hidden_input form, :group_id %>
|
2019-04-01 16:24:22 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<%= label form, :feed_url, "Feed URL", class: "col-sm-2 col-form-label" %>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<%= text_input form, :feed_url, placeholder: "https://example.com/feed.xml", class: "form-control" %>
|
|
|
|
</div>
|
2019-03-21 23:21:56 +00:00
|
|
|
</div>
|
2019-04-01 16:24:22 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<%= submit "Add Feed", class: "btn btn-primary" %>
|
|
|
|
</div>
|
2019-03-21 23:21:56 +00:00
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
2019-04-01 16:24:22 +00:00
|
|
|
<%= 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>
|
|
|
|
|
|
|
|
<table class="table table-striped">
|
|
|
|
<tbody>
|
|
|
|
<%= for feed <- @group.feeds do %>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="<%= Routes.feed_path(@conn, :show, feed.id) %>"><%= feed.feed_url %></a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a href="<%= feed.site_url %>"><%= feed.title %></a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</tbody>
|
2019-11-09 18:21:45 +00:00
|
|
|
</table>
|