42 lines
1.6 KiB
Plaintext
42 lines
1.6 KiB
Plaintext
.activity-single(class!="<%- mode %>")
|
|
.activity-user
|
|
a.avatar(href!="<%- userProfileUrl %>", title!="<%- userFullName %>")
|
|
img(src!="<%- avatar %>", alt!="<%- userFullName %>")
|
|
.activity-content
|
|
.activity-username
|
|
a.username(href!="<%- userProfileUrl %>", title!="<%- userFullName %>")
|
|
| <%- userFullName %>
|
|
span.date
|
|
| <%- creationDate %>
|
|
|
|
<% if (comment.length > 0) { %>
|
|
<% if ((deleteCommentDate || deleteCommentUser)) { %>
|
|
.deleted-comment
|
|
span(translate="COMMENTS.DELETED_INFO",
|
|
translate-values!="{ user: '<%- deleteCommentUser %>', date: '<%- deleteCommentDate %>'}")
|
|
<% } %>
|
|
.comment.wysiwyg
|
|
div(ng-non-bindable)
|
|
| <%= comment %>
|
|
<% if (!deleteCommentDate && mode !== "activity" && canDeleteComment) { %>
|
|
a.comment-delete(
|
|
href="",
|
|
title!="<%- deleteCommentActionTitle %>",
|
|
data-activity-id!="<%- activityId %>"
|
|
)
|
|
tg-svg(svg-icon="icon-trash")
|
|
<% } %>
|
|
<% } %>
|
|
|
|
<% if(changes.length > 0) { %>
|
|
.changes
|
|
<% if (mode != "activity") { %>
|
|
a.changes-title(href="", title="{{'ACTIVITY.SHOW_ACTIVITY' | translate}}")
|
|
span <%- changesText %>
|
|
tg-svg(svg-icon="icon-arrow-right")
|
|
<% } %>
|
|
<% _.each(changes, function(change) { %>
|
|
| <%= change %>
|
|
<% }) %>
|
|
<% } %>
|