mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Layout: Update friends, groups, videos and albums lists. And some style fixes.
This commit is contained in:
parent
c911ebac25
commit
91b4e03d7e
9 changed files with 2059 additions and 1965 deletions
|
@ -1,7 +1,9 @@
|
||||||
{extends "@layout.xml"}
|
{extends "@layout.xml"}
|
||||||
|
|
||||||
{block wrap}
|
{block wrap}
|
||||||
<div class="page_wrap">
|
<div class="wrap2">
|
||||||
|
<div class="wrap1">
|
||||||
|
<div class="page_wrap padding_top">
|
||||||
<div n:ifset="tabs" class="tabs">
|
<div n:ifset="tabs" class="tabs">
|
||||||
{include tabs}
|
{include tabs}
|
||||||
</div>
|
</div>
|
||||||
|
@ -67,4 +69,6 @@
|
||||||
{include bottom}
|
{include bottom}
|
||||||
{/ifset}
|
{/ifset}
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{/block}
|
{/block}
|
||||||
|
|
|
@ -5,12 +5,29 @@
|
||||||
{block title}{_"albums"} {$owner->getCanonicalName()}{/block}
|
{block title}{_"albums"} {$owner->getCanonicalName()}{/block}
|
||||||
|
|
||||||
{block header}
|
{block header}
|
||||||
<a href="{$owner->getURL()}">{$owner->getCanonicalName()}</a>
|
{if isset($thisUser) && $thisUser->getId() == $owner->getId()}
|
||||||
» {_"albums"}
|
{_my_photos}
|
||||||
|
{else}
|
||||||
|
<a href="{$owner->getURL()}">
|
||||||
|
{$owner->getCanonicalName()}</a>
|
||||||
|
»
|
||||||
|
{_albums}
|
||||||
|
{/if}
|
||||||
|
{/block}
|
||||||
|
|
||||||
<div n:if="$canEdit" style="float: right;">
|
{block size}
|
||||||
{var isClub = ($owner instanceof openvk\Web\Models\Entities\Club)}
|
<div style="padding-bottom: 0px; padding-top: 0;" class="summaryBar">
|
||||||
<a href="/albums/create{$isClub ? '?gpid=' . $owner->getId() : ''}">{_"create_album"}</a>
|
<div class="summary">
|
||||||
|
{if !is_null($thisUser) && $owner->getId() === $thisUser->getId()}
|
||||||
|
{tr("albums_list", $count)}
|
||||||
|
{else}
|
||||||
|
{tr("albums", $count)}
|
||||||
|
{/if}
|
||||||
|
<span n:if="isset($thisUser) && $thisUser->getId() == $owner->getId()">
|
||||||
|
|
|
||||||
|
<a href="/albums/create">{_create_album}</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/block}
|
{/block}
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,9 @@
|
||||||
{/block}
|
{/block}
|
||||||
|
|
||||||
{block header}
|
{block header}
|
||||||
|
{if isset($thisUser) && $thisUser->getId() == $user->getId()}
|
||||||
|
{_my_friends}
|
||||||
|
{else}
|
||||||
<a href="{$user->getURL()}">{$user->getCanonicalName()}</a> »
|
<a href="{$user->getURL()}">{$user->getCanonicalName()}</a> »
|
||||||
{if $act == "incoming"}
|
{if $act == "incoming"}
|
||||||
{_"incoming_req"}
|
{_"incoming_req"}
|
||||||
|
@ -33,17 +36,45 @@
|
||||||
{else}
|
{else}
|
||||||
{_"friends"}
|
{_"friends"}
|
||||||
{/if}
|
{/if}
|
||||||
|
{/if}
|
||||||
{/block}
|
{/block}
|
||||||
|
|
||||||
{block tabs}
|
{block tabs}
|
||||||
<div n:attr="id => ($act === 'friends' ? 'activetabs' : 'ki')" class="tab">
|
<div n:attr="id => ($act === 'friends' ? 'activetabs' : 'ki')" class="tab">
|
||||||
<a n:attr="id => ($act === 'friends' ? 'act_tab_a' : 'ki')" href="?">{_friends}</a>
|
<a n:attr="id => ($act === 'friends' ? 'act_tab_a' : 'ki')" href="?">{_friends}</a>
|
||||||
</div>
|
</div>
|
||||||
<div n:attr="id => ($act === 'incoming' ? 'activetabs' : 'ki')" class="tab">
|
<div n:attr="id => ($act === 'incoming' || $act === 'outcoming' ? 'activetabs' : 'ki')" class="tab">
|
||||||
<a n:attr="id => ($act === 'incoming' ? 'act_tab_a' : 'ki')" href="?act=incoming">{_incoming_req}</a>
|
<a n:attr="id => ($act === 'incoming' || $act === 'outcoming' ? 'act_tab_a' : 'ki')" href="?act=incoming">{_req}</a>
|
||||||
|
</div>
|
||||||
|
{/block}
|
||||||
|
|
||||||
|
{block size}
|
||||||
|
<div n:if="$act === 'incoming' || $act === 'outcoming'" class="mb_tabs">
|
||||||
|
<div n:attr="id => ($act === 'incoming' ? 'active' : 'ki')" class="mb_tab">
|
||||||
|
<div>
|
||||||
|
<a href="?act=incoming">Входящие</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div n:attr="id => ($act === 'outcoming' ? 'active' : 'ki')" class="mb_tab">
|
||||||
|
<div>
|
||||||
|
<a href="?act=outcoming">Исходящие</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div style="padding-bottom: 0px;" class="summaryBar">
|
||||||
|
<div class="summary">
|
||||||
|
{if !is_null($thisUser) && $user->getId() === $thisUser->getId()}
|
||||||
|
{if $act == "incoming"}
|
||||||
|
{tr("req", $count)}
|
||||||
|
{elseif $act == "outcoming"}
|
||||||
|
{tr("req", $count)}
|
||||||
|
{else}
|
||||||
|
{tr("friends_list", $count)}
|
||||||
|
{/if}
|
||||||
|
{else}
|
||||||
|
{tr("friends", $count)}
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
<div n:attr="id => ($act === 'outcoming' ? 'activetabs' : 'ki')" class="tab">
|
|
||||||
<a n:attr="id => ($act === 'outcoming' ? 'act_tab_a' : 'ki')" href="?act=outcoming">{_outcoming_req}</a>
|
|
||||||
</div>
|
</div>
|
||||||
{/block}
|
{/block}
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
{/block}
|
{/block}
|
||||||
|
|
||||||
{block size}
|
{block size}
|
||||||
<div style="padding-bottom: 0px;border-bottom: 0;" class="summaryBar">
|
<div style="padding-bottom: 0px;" class="summaryBar">
|
||||||
<div class="summary">
|
<div class="summary">
|
||||||
{if !is_null($thisUser) && $user->getId() === $thisUser->getId()}
|
{if !is_null($thisUser) && $user->getId() === $thisUser->getId()}
|
||||||
{tr("groups_list", $thisUser->getClubCount())}
|
{tr("groups_list", $thisUser->getClubCount())}
|
||||||
|
@ -73,11 +73,12 @@
|
||||||
{block actions}
|
{block actions}
|
||||||
{var clubPinned = $thisUser->isClubPinned($x)}
|
{var clubPinned = $thisUser->isClubPinned($x)}
|
||||||
{if $x->canBeModifiedBy($thisUser ?? NULL)}
|
{if $x->canBeModifiedBy($thisUser ?? NULL)}
|
||||||
<a style="border-bottom: none; width: 140px;" class="profile_link" href="{$x->getURL()}">
|
<div class="navigation" style="width: 140px;">
|
||||||
|
<a class="link" href="{$x->getURL()}">
|
||||||
{_check_community}
|
{_check_community}
|
||||||
</a>
|
</a>
|
||||||
{if ($clubPinned || $thisUser->getPinnedClubCount() <= 10)}
|
{if ($clubPinned || $thisUser->getPinnedClubCount() <= 10)}
|
||||||
<a style="border-bottom: none; width: 140px;" class="profile_link" href="/groups_pin?club={$x->getId()}&hash={rawurlencode($csrfToken)}" data-group-name="{$x->getName()}" data-group-url="{$x->getUrl()}">
|
<a class="link" href="/groups_pin?club={$x->getId()}&hash={rawurlencode($csrfToken)}" data-group-name="{$x->getName()}" data-group-url="{$x->getUrl()}">
|
||||||
{if $clubPinned}
|
{if $clubPinned}
|
||||||
{_remove_from_left_menu}
|
{_remove_from_left_menu}
|
||||||
{else}
|
{else}
|
||||||
|
@ -89,9 +90,9 @@
|
||||||
<input type="hidden" name="act" value="rem" />
|
<input type="hidden" name="act" value="rem" />
|
||||||
<input type="hidden" name="id" value="{$x->getId()}" />
|
<input type="hidden" name="id" value="{$x->getId()}" />
|
||||||
<input type="hidden" name="hash" value="{$csrfToken}" />
|
<input type="hidden" name="hash" value="{$csrfToken}" />
|
||||||
<input style="text-transform: lowercase; border-bottom: none; width: 140px;" type="submit" id="profile_link" value="{_"leave_community"}" />
|
<input style="text-transform: lowercase; width: 100%;" class="link" type="submit" value="{_"leave_community"}" />
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
{/block}
|
{/block}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
{/block}
|
{/block}
|
||||||
|
|
||||||
{block size}
|
{block size}
|
||||||
<div style="padding-bottom: 0px;border-bottom: 0; padding-top: 0;" class="summaryBar">
|
<div style="padding-bottom: 0px; padding-top: 0;" class="summaryBar">
|
||||||
<div class="summary">
|
<div class="summary">
|
||||||
{tr("videos", $count)}
|
{tr("videos", $count)}
|
||||||
<span n:if="isset($thisUser) && $thisUser->getId() == $user->getId()">
|
<span n:if="isset($thisUser) && $thisUser->getId() == $user->getId()">
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<center style="background: white;border: #DEDEDE solid 1px;">
|
<center style="background: white;border: #DEDEDE solid 1px;">
|
||||||
<span style="color: #707070;margin: 60px 0;display: block;">
|
<span style="color: #707070;margin: 60px 0;display: block;">
|
||||||
<b>{$title}</b><br><br>
|
<b n:if="!empty($title)">{$title}<br><br></b>
|
||||||
{$description}
|
{$description}
|
||||||
</span>
|
</span>
|
||||||
</center>
|
</center>
|
|
@ -1 +1 @@
|
||||||
{include "error.xml", title => tr("no_data"), description => tr("no_data_description")}
|
{include "error.xml", description => tr("no_data_description")}
|
||||||
|
|
|
@ -226,9 +226,10 @@ a {
|
||||||
border-bottom: solid 1px #c3cad2;
|
border-bottom: solid 1px #c3cad2;
|
||||||
border-left: solid 1px #d5dde6;
|
border-left: solid 1px #d5dde6;
|
||||||
border-right: solid 1px #d5dde6;
|
border-right: solid 1px #d5dde6;
|
||||||
padding: 12px;
|
}
|
||||||
width: 604px;
|
|
||||||
margin-left: 1px;
|
.page_wrap.padding_top {
|
||||||
|
padding-top: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-main-tile {
|
.content-main-tile {
|
||||||
|
@ -768,12 +769,8 @@ table.User {
|
||||||
}
|
}
|
||||||
|
|
||||||
.container_gray {
|
.container_gray {
|
||||||
background: #F7F7F7;
|
background: #F6F6F6;
|
||||||
width: 604px;
|
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
border-top: #EBEBEB solid 1px;
|
|
||||||
margin-left: -12px;
|
|
||||||
margin-bottom: -12px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.container_gray.bottom {
|
.container_gray.bottom {
|
||||||
|
@ -795,13 +792,11 @@ table.User {
|
||||||
|
|
||||||
.tabs {
|
.tabs {
|
||||||
border-bottom: 1px solid #707070;
|
border-bottom: 1px solid #707070;
|
||||||
margin-right: -12px;
|
padding: 0 10px;
|
||||||
margin-left: -12px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#activetabs {
|
#activetabs {
|
||||||
background: #707070;
|
background: #707070;
|
||||||
border-radius: 3px 3px 0px 0px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -811,8 +806,13 @@ table.User {
|
||||||
|
|
||||||
.tab {
|
.tab {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 4px 6px;
|
padding: 5px 10px;
|
||||||
margin-left: 15px;
|
margin-right: 3px;
|
||||||
|
border-radius: 3px 3px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab:hover {
|
||||||
|
background: #E4E4E4;
|
||||||
}
|
}
|
||||||
|
|
||||||
#act_tab_a {
|
#act_tab_a {
|
||||||
|
@ -1787,14 +1787,11 @@ body.scrolled .toTop:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.summaryBar {
|
.summaryBar {
|
||||||
border-bottom: 1px solid #DAE2E8;
|
border-bottom: #DEDEDE solid 1px;
|
||||||
clear: both;
|
clear: both;
|
||||||
padding: 11px 10px;
|
padding: 11px 10px;
|
||||||
color: black;
|
padding-bottom: 11px;
|
||||||
font-weight: normal;
|
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
margin-left: -12px;
|
|
||||||
margin-right: -12px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.summaryBar .summary {
|
.summaryBar .summary {
|
||||||
|
@ -1835,9 +1832,6 @@ body.scrolled .toTop:hover {
|
||||||
.groups_options {
|
.groups_options {
|
||||||
padding: 10px 20px 20px;
|
padding: 10px 20px 20px;
|
||||||
border-top: #DEDEDE solid 1px;
|
border-top: #DEDEDE solid 1px;
|
||||||
margin-top: 12px;
|
|
||||||
margin-left: -12px;
|
|
||||||
margin-right: -12px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#gp_container {
|
#gp_container {
|
||||||
|
@ -1876,3 +1870,32 @@ table td[width="120"] {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mb_tabs {
|
||||||
|
background-color: #F6F6F6;
|
||||||
|
border-bottom: #DEDEDE solid 1px;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mb_tab {
|
||||||
|
cursor: pointer;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-right: 10px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mb_tab div {
|
||||||
|
padding: 5px 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mb_tab#active {
|
||||||
|
background-color: #898989;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mb_tab#active div {
|
||||||
|
border: 2px solid #5f5f5f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mb_tab#active a {
|
||||||
|
color: white;
|
||||||
|
}
|
|
@ -195,16 +195,28 @@
|
||||||
"friends_reject" = "Отменить заявку";
|
"friends_reject" = "Отменить заявку";
|
||||||
"friends_accept" = "Принять заявку";
|
"friends_accept" = "Принять заявку";
|
||||||
"send_message" = "Отправить сообщение";
|
"send_message" = "Отправить сообщение";
|
||||||
"incoming_req" = "Подписчики";
|
"incoming_req" = "Входящие";
|
||||||
"outcoming_req" = "Заявки";
|
"outcoming_req" = "Исходящие";
|
||||||
"req" = "Заявки";
|
"req" = "Заявки";
|
||||||
|
|
||||||
"firends_zero" = "Ни одного друга";
|
"req_zero" = "Не найдено ни одной заявки...";
|
||||||
|
"req_one" = "Найдена $1 заявка";
|
||||||
|
"req_few" = "Найлено $1 заявки";
|
||||||
|
"req_many" = "Найдено $1 заявки";
|
||||||
|
"req_other" = "Найдено $1 заявок";
|
||||||
|
|
||||||
|
"friends_zero" = "Ни одного друга";
|
||||||
"friends_one" = "$1 друг";
|
"friends_one" = "$1 друг";
|
||||||
"friends_few" = "$1 друга";
|
"friends_few" = "$1 друга";
|
||||||
"friends_many" = "$1 друзей";
|
"friends_many" = "$1 друзей";
|
||||||
"friends_other" = "$1 друзей";
|
"friends_other" = "$1 друзей";
|
||||||
|
|
||||||
|
"friends_list_zero" = "У Вас пока нет друзей";
|
||||||
|
"friends_list_one" = "У Вас $1 друг";
|
||||||
|
"friends_list_few" = "У Вас $1 друга";
|
||||||
|
"friends_list_many" = "У Вас $1 друзей";
|
||||||
|
"friends_list_other" = "У Вас $1 друзей";
|
||||||
|
|
||||||
"followers_zero" = "Ни одного подписчика";
|
"followers_zero" = "Ни одного подписчика";
|
||||||
"followers_one" = "$1 подписчик";
|
"followers_one" = "$1 подписчик";
|
||||||
"followers_few" = "$1 подписчика";
|
"followers_few" = "$1 подписчика";
|
||||||
|
@ -318,6 +330,12 @@
|
||||||
"albums_many" = "$1 альбомов";
|
"albums_many" = "$1 альбомов";
|
||||||
"albums_other" = "$1 альбомов";
|
"albums_other" = "$1 альбомов";
|
||||||
|
|
||||||
|
"albums_list_zero" = "У Вас нет ни одного альбома";
|
||||||
|
"albums_list_one" = "У Вас один альбом";
|
||||||
|
"albums_list_few" = "У Вас $1 альбома";
|
||||||
|
"albums_list_many" = "У Вас $1 альбомов";
|
||||||
|
"albums_list_other" = "У Вас $1 альбомов";
|
||||||
|
|
||||||
/* Notes */
|
/* Notes */
|
||||||
|
|
||||||
"notes" = "Заметки";
|
"notes" = "Заметки";
|
||||||
|
@ -751,7 +769,7 @@
|
||||||
"information_-2" = "Вход выполнен успешно";
|
"information_-2" = "Вход выполнен успешно";
|
||||||
|
|
||||||
"no_data" = "Нет данных";
|
"no_data" = "Нет данных";
|
||||||
"no_data_description" = "В этом представлении отсутствуют данные.";
|
"no_data_description" = "Тут ничего нет... Пока...";
|
||||||
|
|
||||||
"error" = "Ошибка";
|
"error" = "Ошибка";
|
||||||
"error_shorturl" = "Данный короткий адрес уже занят.";
|
"error_shorturl" = "Данный короткий адрес уже занят.";
|
||||||
|
|
Loading…
Reference in a new issue