Use uri! to generate links instead of hardcoded urls Fix #110 Fix invalid links needing to be POST forms Translate login message for boost and like directly from template Put js for search in its own file
		
			
				
	
	
		
			29 lines
		
	
	
		
			918 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			918 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| @use template_utils::*;
 | |
| @use plume_models::comments::Comment;
 | |
| @use plume_models::users::User;
 | |
| @use routes::*;
 | |
| 
 | |
| @(ctx: BaseContext, comm: &Comment, author: User)
 | |
| 
 | |
| <div class="comment" id="comment-@comm.id">
 | |
|     <a class="author" href="@uri!(user::details: name = author.get_fqn(ctx.0))">
 | |
|         @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>
 |