AlphaStar
в topicRow после:
<li class="ipsDataItem ipsDataItem_responsivePhoto {{if $row->groupsPosted}}ipsDataItem_highlighted{{endif}} {{if $row->unread()}}ipsDataItem_unread{{endif}} {{if method_exists( $row, 'tableClass' ) && $row->tableClass()}}ipsDataItem_{$row->tableClass()}{{endif}} {{if $row->hidden()}}ipsModerated{{endif}}" data-rowID='{$row->$idField}'>
добавить:
{{if $row->container()->forum_allow_rating}}
<div class="{{if \IPS\Member::loggedIn()->modPermission()}}rtnga{{else}}rtng{{endif}}">{template="rating" group="global" location="front" app="core" params="'tiny', $row->averageRating()"}</div>
{{endif}}
в questionRow добавить то же, что и сверху, после:
<li class="ipsDataItem {{if \IPS\forums\Forum::getMemberListView() == 'snippet'}}ipsTopicSnippet ipsQuestionSnippet{{endif}} {{if $row->unread()}}ipsDataItem_unread{{endif}} {{if method_exists( $row, 'tableClass' ) && $row->tableClass()}}ipsDataItem_{$row->tableClass()}{{endif}} {{if $row->hidden()}}ipsModerated{{endif}} cForumQuestion" data-rowID='{$row->$idField}'>
в custom.css добавить:
@media (min-width: 980px) {
.rtnga {
padding: 10px 35px 0 !important;
margin-bottom: -18px;
}
}
@media (max-width: 979px) {
.rtnga {
padding: 0 22px !important;
}
}
@media (min-width: 980px) {
.rtng {
padding: 10px 12px 0 !important;
margin-bottom: -18px;
}
}
@media (max-width: 979px) {
.rtng {
padding: 0 !important;
}
}
в ксс можешь сам подредактировать, если где-то будут неровности на сторонних темах.