2018-12-06 18:54:16 +01:00
|
|
|
@use template_utils::*;
|
|
|
|
@use plume_models::comments::Comment;
|
|
|
|
@use plume_models::users::User;
|
2018-12-07 12:05:01 +01:00
|
|
|
@use routes::*;
|
2018-12-06 18:54:16 +01:00
|
|
|
|
|
|
|
@(ctx: BaseContext, comm: &Comment, author: User)
|
|
|
|
|
|
|
|
<div class="comment" id="comment-@comm.id">
|
2018-12-07 12:05:01 +01:00
|
|
|
<a class="author" href="@uri!(user::details: name = author.get_fqn(ctx.0))">
|
2018-12-06 18:54:16 +01:00
|
|
|
@avatar(ctx.0, &author, Size::Small, true, ctx.1)
|
|
|
|
<span class="display-name">@author.name(ctx.0)</span>
|
|
|
|
<small>@author.get_fqn(ctx.0)</small>
|
|
|
|
</a>
|
|
|
|
<div class="text">
|
|
|
|
@if comm.sensitive {
|
|
|
|
<details>
|
|
|
|
<summary>@comm.spoiler_text</summary>
|
|
|
|
}
|
|
|
|
@Html(&comm.content)
|
|
|
|
@if comm.sensitive {
|
|
|
|
</details>
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
<a class="button icon icon-message-circle" href="?responding_to=@comm.id">@i18n!(ctx.1, "Respond")</a>
|
|
|
|
@for res in comm.get_responses(ctx.0) {
|
|
|
|
@:comment(ctx, &res, res.get_author(ctx.0))
|
|
|
|
}
|
|
|
|
</div>
|