You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.3 KiB

<div class="strike">
<div class="strike-info">
<h3> User:
<%- include('user.ejs', {user:{username:strike.strokedName,avatar:strike.strokedAvatar,id:strike.strokedID }, stroke:true}) %>
was struck
</h3>
<h3> by:
<%- include('user.ejs', {user:{username:strike.strikerName,avatar:strike.strikerAvatar,id:strike.strikerID}, stroke:false}) %>
</h3>
<h3> With the reason: <%= strike.reason %> </h3>
<h5> Lasting until: <%=new Date(strike.expireAt).toDateString()%> </h5>
<%if(strike.validated){%>
<%if(strike.validatedBy){%>
<h4 id="validator"> Validated by:
<%- include('user.ejs', {user:strike.moderator, stroke:false}) %>
</h4>
<% } %>
<% } %>
</div>
<% if(!strike.validated){ %>
<div class="actions">
<div>
<h4 hx-put="/strikes/<%= strike.guildID %>/<%= moderator%>/<%= strike._id %>" hx-target="#maindisplay"> Validate ✔</h4>
</div>
<div>
<h4 hx-delete="/strikes/<%= strike.guildID %>/<%= moderator%>/<%= strike._id %>" hx-target="#maindisplay"> Remove ❌</h4>
</div>
</div>
<% } %>
</div>