diff --git a/Web/Presenters/templates/User/Fave.xml b/Web/Presenters/templates/User/Fave.xml index 50ead41f..29814c39 100644 --- a/Web/Presenters/templates/User/Fave.xml +++ b/Web/Presenters/templates/User/Fave.xml @@ -36,24 +36,30 @@ {if $count > 0} {foreach $data as $dat} - {if $section == "posts"} -
- {include "../components/post.xml", post => $dat, commentSection => true} -
- {elseif $section == "comments"} -
- {include "../components/comment.xml", comment => $dat, correctLink => true, no_reply_button => true} -
- {elseif $section == "photos"} -
- - {$dat->getDescription()} - -
- {elseif $section == "videos"} -
- {include "../components/video.xml", video => $dat} + {if $dat->isDeleted()} +
+ [deleted]
+ {else} + {if $section == "posts"} +
+ {include "../components/post.xml", post => $dat, commentSection => true} +
+ {elseif $section == "comments"} +
+ {include "../components/comment.xml", comment => $dat, correctLink => true, no_reply_button => true} +
+ {elseif $section == "photos"} +
+ + {$dat->getDescription()} + +
+ {elseif $section == "videos"} +
+ {include "../components/video.xml", video => $dat} +
+ {/if} {/if} {/foreach} {else} diff --git a/Web/static/css/audios.css b/Web/static/css/audios.css index 69e194b9..89bce6f5 100644 --- a/Web/static/css/audios.css +++ b/Web/static/css/audios.css @@ -52,7 +52,6 @@ height: 46px; } -/* кто прочитал тому не завидую */ .bigPlayer .bigPlayerWrapper .absoluteButtons { position: absolute; bottom: 0; diff --git a/Web/static/css/main.css b/Web/static/css/main.css index ac2e5457..c4d0b6c0 100644 --- a/Web/static/css/main.css +++ b/Web/static/css/main.css @@ -4282,3 +4282,7 @@ hr { height: 30px; background-position-y: 9px; } + +.deleted_mark_average { + padding: 5px 61px; +}