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.
44 lines
1.7 KiB
44 lines
1.7 KiB
<% strikes.forEach(strike=>{%>
|
|
<div class="strike">
|
|
<div class="strike-info">
|
|
<h3> User:
|
|
<span class="striked">
|
|
<% if (strike.strokedAvatar !== 'NOAVATAR') { %>
|
|
<img src="https://cdn.discordapp.com/avatars/<%= strike.strokedID %>/<%= strike.strokedAvatar %>.jpeg" alt="Striker Avatar">
|
|
<% } %>
|
|
<%= strike.strokedName %>
|
|
</span>
|
|
was struck
|
|
</h3>
|
|
<h3> by:
|
|
<span>
|
|
<% if (strike.strikerAvatar !== 'NOAVATAR') { %>
|
|
<img src="https://cdn.discordapp.com/avatars/<%= strike.strikerID %>/<%= strike.strikerAvatar %>.jpeg" alt="Striker Avatar">
|
|
<% } %>
|
|
<%= strike.strikerName %>
|
|
</span>
|
|
</h3>
|
|
<h3> With the reason: <%= strike.reason %> </h3>
|
|
<h5> Lasting until: <%=new Date(strike.expireAt).toDateString()%> </h5>
|
|
<%if(strike.validated){%>
|
|
<h4>Validated</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>
|
|
|
|
<% });%>
|
|
<%if(strikes.length==0){%>
|
|
<div class="NoStrikes">
|
|
<h2> THERE ARE NO STRIKES</h2>
|
|
</div>
|
|
<% } %> |