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

71 lines
3.5 KiB
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
<div class="content_divider">
2020-12-26 11:06:20 +03:00
<div class="content_title_expanded" onclick="hidePanel(this);">
2020-12-26 11:14:43 +03:00
{_"wall"}
<nobold>
{tr("wall", $count)}
<a href="/wall{$owner}" class="float-right lowercase">{_all_title}</a>
</nobold>
2020-06-07 19:04:43 +03:00
</div>
<div>
<div n:if="$canPost" class="content_subtitle">
<div id="write" style="padding: 5px 0;" onfocusin="expand_wall_textarea();">
2020-12-26 01:57:44 +03:00
<form action="/wall{$owner}/makePost" method="post" enctype="multipart/form-data" style="margin:0;">
<textarea id="wall-post-input" placeholder="{_write}" name="text" style="width: 100%;resize: none;" class="small-textarea"></textarea>
<div>
<!-- padding to fix <br/> bug -->
</div>
<div id="post-buttons" style="display: none;">
<div class="post-upload">
Вложение: <span>(unknown)</span>
</div>
<div class="post-opts">
{if !is_null($thisUser) && $owner < 0 && $club->canBeModifiedBy($thisUser)}
<script>
function onWallAsGroupClick(el) {
_display = el.checked ? "block" : "none";
document.querySelector("#forceSignOpt").style.display = _display;
}
</script>
<label>
<input type="checkbox" name="as_group" onchange="onWallAsGroupClick(this)" /> От имени сообщества
</label>
<label id="forceSignOpt" style="display: none;">
<input type="checkbox" name="force_sign" /> Подпись автора
</label>
{/if}
<label>
<input type="checkbox" name="nsfw" /> Содержит NSFW-контент
</label>
</div>
<input type="file" name="_pic_attachment" accept="image/*" style="display:none;" />
<input type="hidden" name="type" value="1" />
<input type="hidden" name="hash" value="{$csrfToken}" />
<br/>
<input type="submit" value="{_'write'}" class="button" />
<div style="float: right;">
<a href="javascript:void(document.querySelector(`input[name=_pic_attachment]`).click());">
{_attach_photo}
</a>
</div>
</div>
</form>
2020-06-07 19:04:43 +03:00
</div>
</div>
2020-12-26 01:57:44 +03:00
2020-06-07 19:04:43 +03:00
<div class="content">
{if sizeof($posts) > 0}
{foreach $posts as $post}
<a name="postGarter={$post->getId()}"></a>
{include "../components/post.xml", post => $post}
{/foreach}
{include "../components/paginator.xml", conf => $paginatorConf}
{else}
2020-08-20 17:05:00 +03:00
{_no_posts_abstract}
2020-06-07 19:04:43 +03:00
{/if}
</div>
</div>
</div>