Skip to content

Commit

Permalink
уведомления: более похожие на другие таблицы
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcom committed Aug 22, 2023
1 parent 03a977f commit 5e68614
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/webapp/WEB-INF/jsp/show-replies-new.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
<table width="100%" class="message-table">
<c:forEach var="topic" items="${topicsList}">
<tr>
<td align="center">
<td style="text-align: center; border-right: 1px; width: 1.5em">
<c:choose>
<c:when test="${topic.event.eventType == 'DELETED'}">
<img src="/img/del.png" alt="[X]" title="Сообщение удалено" width="15" height="15">
Expand All @@ -118,7 +118,7 @@
</c:when>
</c:choose>
</td>
<td style="vertical-align: top">
<td style="vertical-align: top; border-left: 1px; border-right: 1px">
<c:if test="${topic.commentId() != 0}"><i class="icon-comment"></i></c:if>
<a href="${topic.link}" class="event-unread-${topic.event.unread}">
<l:title>${topic.event.subj}</l:title>
Expand Down Expand Up @@ -151,7 +151,7 @@
</c:when>
</c:choose>
</td>
<td title="${topic.authorsText}" style="text-align: right">
<td title="${topic.authorsText}" style="text-align: right; border-left: 1px">
<c:if test="${topic.count > 1}">
<i class="icon-comment"></i> ${topic.count}<br>
</c:if>
Expand Down

0 comments on commit 5e68614

Please sign in to comment.