openvk/Web/Presenters/templates/Wall/Feed.xml

50 lines
1.6 KiB
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
{extends "../@layout.xml"}
{block title}{_"feed"}{/block}
{block header}
{_"feed"}
2020-06-11 12:51:12 +03:00
<div n:if="!isset($globalFeed)" style="float: right;">
<span>
<b>
<a href="/feed/all">{_"all_news"}</a>
2020-06-11 12:51:12 +03:00
</b>
</span>
</div>
2020-06-07 19:04:43 +03:00
{/block}
{block content}
<div class="postFeedWrapper">
{include "../components/textArea.xml", route => "/wall" . $thisUser->getId() . "/makePost"}
2020-06-07 19:04:43 +03:00
</div>
<br/>
<center>
{foreach $posts as $post}
<a name="postGarter={$post->getId()}"></a>
{include "../components/post.xml", post => $post, onWallOf => true, commentSection => true}
2020-06-07 19:04:43 +03:00
{/foreach}
{include "../components/paginator.xml", conf => $paginatorConf}
<br/>
{_"posts_per_page"}:
2020-06-07 19:04:43 +03:00
<select id="pageSelect">
<option value="1">1</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="20">20</option>
<option value="30">30</option>
<option value="40">40</option>
<option value="50">50</option>
</select>
<script>
u("#pageSelect").nodes[0].value = {$paginatorConf->perPage};
u("#pageSelect").on("change", function(e) {
let url = "?" + {http_build_query(array_merge($_GET, ['posts' => '__padding']))};
window.location.assign(url.replace("__padding", e.target.value));
});
</script>
</center>
{/block}