mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
27 lines
684 B
HTML
27 lines
684 B
HTML
![]() |
<template name="userSubscribedPosts">
|
||
|
<div class="grid-small grid-block dialog admin">
|
||
|
<h3>{{_ "subscribed_posts"}}</h3>
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<td>Post</td>
|
||
|
<td>Subscribed At</td>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
{{#each posts}}
|
||
|
<tr>
|
||
|
<td><a href="{{pathFor route='post_page' _id=_id}}">{{title}}</a></td>
|
||
|
<td>{{formatDate subscribedAt "MM/DD/YYYY, HH:mm"}}</td>
|
||
|
</tr>
|
||
|
{{/each}}
|
||
|
{{#if hasMorePosts}}
|
||
|
<tr>
|
||
|
<td colspan="2">
|
||
|
<a class="subscribedposts-more more-button grid-module" href="#"><span>{{_ "load_more"}}</span></a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{{/if}}
|
||
|
</table>
|
||
|
</div>
|
||
|
</template>
|