feedless/app/views/mobile/friends.ejs

14 lines
444 B
Plaintext
Raw Normal View History

2020-04-23 09:52:53 +02:00
<div class="friends-communities">
<% if (friends.requestsReceived.length) { %>
<h2>Friend Requests</h2>
<div style="margin-bottom: 30px">
<%- include('../_friends', { friends: friends.requestsReceived }) %>
</div>
<% } %>
<h2>Friends</h2>
2020-04-23 22:46:25 +02:00
<%- include('_friends', { friends: friends.friends }) %>
2020-04-23 09:52:53 +02:00
<h2 style="margin-top: 30px">Requests Sent</h2>
2020-04-23 22:46:25 +02:00
<%- include('_friends', { friends: friends.requestsSent }) %>
2020-04-23 09:52:53 +02:00
</div>