mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
26 lines
No EOL
683 B
HTML
26 lines
No EOL
683 B
HTML
<template name="userDownvotedPosts">
|
|
<div class="user-profile-votes grid grid-module">
|
|
<h3>{{_ "downvoted_posts"}}</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<td>Post</td>
|
|
<td>Downvoted At</td>
|
|
</tr>
|
|
</thead>
|
|
{{#each downvoted}}
|
|
<tr>
|
|
<td><a href="{{pathFor route='post_page' _id=_id}}">{{title}}</a></td>
|
|
<td>{{formatDate votedAt "MM/DD/YYYY, HH:mm"}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
{{#if hasMoreDownvotedPosts}}
|
|
<tr>
|
|
<td colspan="2">
|
|
<a class="downvoted-more more-button grid-module" href="#"><span>{{_ "load_more"}}</span></a>
|
|
</td>
|
|
</tr>
|
|
{{/if}}
|
|
</table>
|
|
</div>
|
|
</template> |