You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
625 B
19 lines
625 B
<div id="feeds" class="popup">
|
|
<section style="margin-top: 2em;"></section>
|
|
<i hx-get="/gdash/<%= id %>" hx-trigger="click" hx-target="#PopUpContainer" class="close material-symbols-outlined" id="close_bt">
|
|
cancel
|
|
</i>
|
|
<p id="newFeed"
|
|
hx-get="/newFeed/<%= id %>"
|
|
hx-trigger="click"
|
|
hx-target="#PopUpContainer"
|
|
>New Feed</p>
|
|
<% feeds.forEach(feed=>{ %>
|
|
<p id= "<%= feeds._id %>"
|
|
hx-get="/feedChange/<%=feed._id %>/<%= id %>"
|
|
hx-trigger="click"
|
|
hx-target="#PopUpContainer"
|
|
><%= feed.channelName %></p>
|
|
<% }) %>
|
|
</div>
|