mirror of
https://github.com/Sheldan/abstracto-templates.git
synced 2026-04-22 22:06:45 +00:00
[AB-197] moving templates from utility to their respective maven modules
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
|
||||
<id>zip</id>
|
||||
<includeBaseDirectory>false</includeBaseDirectory>
|
||||
<formats>
|
||||
<format>zip</format>
|
||||
</formats>
|
||||
<fileSets>
|
||||
<fileSet>
|
||||
<outputDirectory>.</outputDirectory>
|
||||
<directory>${project.basedir}/src/main/resources</directory>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</assembly>
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
<#macro userDisplay user>
|
||||
${user.rank} | <@member_user_name member=user.member/> | ${user.count}
|
||||
</#macro>
|
||||
<#include "member_author">
|
||||
<#include "success_color">,
|
||||
"description": "
|
||||
<@safe_include "repostLeaderboard_rank_column"/> | <@safe_include "repostLeaderboard_name_column"/> | <@safe_include "repostLeaderboard_count_column"/>
|
||||
<#list entries as user>
|
||||
<@userDisplay user=user />
|
||||
<#else>
|
||||
<@safe_include "repostLeaderboard_no_reposts"/>
|
||||
</#list>
|
||||
|
||||
<@safe_include "repostLeaderboard_caller_marker"/>:
|
||||
<#if userExecuting.count gt 0>
|
||||
<@userDisplay user=userExecuting />
|
||||
<#else>
|
||||
<@safe_include "repostLeaderboard_no_reposts"/>
|
||||
</#if>
|
||||
"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
<#include "member_author">
|
||||
<#include "success_color">,
|
||||
"description": "
|
||||
<#list repostCheckChannelGroups as group>
|
||||
<@safe_include "showRepostCheckChannels_response_embed_description"/>: ${group.channelGroup.channelGroup.groupName}(<#list group.channels as channel>${channel.channelRepr}<#sep>, <#else><@safe_include "showRepostCheckChannels_response_embed_no_channels"/></#list>)
|
||||
|
||||
<#else><@safe_include "showRepostCheckChannels_response_embed_no_channel_groups"/></#list>
|
||||
"
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<#include "repost_check_check_channel_not_found_exception_text">
|
||||
Reference in New Issue
Block a user