a mini social media app for small communities
1@include 'partial/header.html' 2 3@if ctx.is_logged_in() 4<script src="/static/js/render_body.js"></script> 5 6<h1>inbox</h1> 7 8<div> 9 @if notifications.len == 0 10 <p>your inbox is empty!</p> 11 @else 12 <a href="/api/user/notification/clear_all">clear all</a> 13 <hr> 14 @for notification in notifications.reverse() 15 <div class="notification"> 16 <p><strong>@notification.summary</strong></p> 17 <pre id="notif-@{notification.id}">@notification.body</pre> 18 <a href="/api/user/notification/clear?id=@{notification.id}">clear</a> 19 <script> 20 render_body('notif-@{notification.id}') 21 </script> 22 </div> 23 @end 24 @end 25</div> 26@else 27<p>uh oh, you need to be logged in to view this page</p> 28@end 29 30@include 'partial/footer.html'